‘xargs’ – Handling Filenames With Spaces or Other Special Characters
xargs is a great little utility to perform batch operations on a large set of files.
Typically, the results of a find operation are piped to the xargs command:
find . -iname "*.pdf" | xargs -I{} mv {} ~/collections/pdf/
The -I{} tells xargs to substitute '{}' in the statement to be executed with the entries being piped through.
If these entries have spaces or other special characters, though, things will go awry.
For example, filenames with spaces in them passed to xargs will result in xargs Read more [...]