mooz / percol

adds flavor of interactive filtering to the traditional pipe concept of UNIX shell
3.3k stars 145 forks source link

Support xargs-like --null /-0 #95

Open HaleTom opened 7 years ago

HaleTom commented 7 years ago

man xargs says:

  -0, --null
       Input items are terminated by a null character instead of by whitespace, and the quotes and backslash are not special (every character is taken literally).   Disables  the
       end of file string, which is treated like any other argument.  Useful when input items might contain white space, quote marks, or backslashes.  The GNU find -print0 option
       produces input suitable for this mode.

Would you consider supporting adding a -0 option which expects NUL-terminated input and writes NUL-terminated output?

snowman commented 4 years ago

Please support this