Comment by akdev1l
11 hours ago
find -print0 will print the files with null bytes as separators
xargs -0 will use a null byte as separator for each argument
printf 'a\0b\0c\0' | xargs -tI{} echo “file -> {}"
11 hours ago
find -print0 will print the files with null bytes as separators
xargs -0 will use a null byte as separator for each argument
printf 'a\0b\0c\0' | xargs -tI{} echo “file -> {}"
No comments yet
Contribute on Hacker News ↗