-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC2038
Vidar Holen edited this page Oct 4, 2015
·
7 revisions
find . -type f | xargs md5sum
find . -type f -print0 | xargs -0 md5sum
By default, xargs
interprets spaces and quotes in an unsafe and unexpected way. Whenever it's used, it should be used with -0
or --null
to split on \0
bytes, and find
should be made to output \0
separated filenames.
None.