Open mcandre opened 4 years ago
Offer a -print0 option to emit results using a NULL 0x00 separator rather than a line terminator separator. This helps recursive commands like:
-print0
stank . | xargs shellcheck
to work more reliably for file paths with spaces.
The new command would look more like:
stank -print0 . | xargs -0 shellcheck
Regards #103
Offer a
-print0
option to emit results using a NULL 0x00 separator rather than a line terminator separator. This helps recursive commands like:to work more reliably for file paths with spaces.
The new command would look more like:
Regards #103