The Joys of xargs - page 2
xargs and find
Moving on from find: it can be useful to pipe the contents of a file into xargs as input. So,
xargs -t -n2 diff < diff-fileswould take the arguments listed in the file diff-files in groups of 2 and run diff on them. So if the diff-files file consisted of:
sample1 alternate1 sample2 alternate2then xargs would run:
diff sample1 alternate1 diff sample2 alternate2This can be a quick way of comparing large numbers of files. (Use -p instead of -t to get a pause after each diff as well as an echo of the command.)
You can also use a listings file and xargs to concatenate the contents of those files:
xargs cat < list-of-files > files-contents(generate list-of-files using xargs as well!
find . -maxdepth 1 -name '*.tex' | xargs echo > list-of-fileswould get all your LaTeX source files in the current directory into one list, ready to be stuck together.)
- Skip Ahead
- 1. xargs and find
- 2. xargs and find
- 3. xargs and find
Solid state disks (SSDs) made a splash in consumer technology, and now the technology has its eyes on the enterprise storage market. Download this eBook to see what SSDs can do for your infrastructure and review the pros and cons of this potentially game-changing storage technology.