1 Matching Annotations
- Aug 2020
-
stackoverflow.com stackoverflow.com
-
That's exactly why I use xargs -0 in conjunction with find -print0. The latter prints filenames with a NUL terminator and the former receives files that way. Why? Filenames in Unix can contain newline characters. But they cannot contain NUL characters.
-