Difference between revisions of "General Command-line Tips"
(Created page with "= Introduction= Tips for using the command line = GNU Parallel= To check the md5sums of a number of files according to a md5sum, one mat use this: cat <file_with_md5sums>...") |
|||
Line 8: | Line 8: | ||
cat <file_with_md5sums> |parallel --pipe -N1 md5sum -c | cat <file_with_md5sums> |parallel --pipe -N1 md5sum -c | ||
+ | |||
+ | (it would be nice to know the number of parallel processes this would generate) |
Revision as of 13:14, 8 November 2016
Introduction
Tips for using the command line
GNU Parallel
To check the md5sums of a number of files according to a md5sum, one mat use this:
cat <file_with_md5sums> |parallel --pipe -N1 md5sum -c
(it would be nice to know the number of parallel processes this would generate)