Difference between revisions of "General Command-line Tips"

From wiki
Jump to: navigation, search
(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>...")
(No difference)

Revision as of 13:45, 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