|
|
|
|
|
by JoachimSchipper
3082 days ago
|
|
Elaborating on the NUL bytes on the command-line, e.g. find -print0 | xargs -0: Using find -print0 etc. is a good idea not so much because NUL is an uncommon character (the various record separators / vertical tab / ... are no more common), but because UNIX - being a C system through and through - allows any character to appear in a file name except '/' (path separator) and NUL. Thus, NUL makes a perfect separator between filenames. |
|