Add null separator support `-0` for `xargs`
eloyesp opened this issue · 0 comments
eloyesp commented
It would be nice to have a way to handle files with whitespace, find
have the -print0
predicate and xargs
have the -0
flag to handle that output. Adding that same flag would enable something like:
$ find documents/ -print0 | fzy -0 | xargs -0 xdg-open
Does it makes sense.