General Command-line Tips

From wiki
Revision as of 13:45, 8 November 2016 by Rf (talk | contribs) (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>...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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