Differences between revisions 1 and 2
Revision 1 as of 2018-01-11 09:33:49
Size: 103
Editor: SamatJain
Comment:
Revision 2 as of 2018-06-08 11:13:26
Size: 260
Editor: SamatJain
Comment:
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:

# Check MP3s in parallel, many arguments per invocation
parallel -m mp3check -Sqe ::: *mp3

# Run commands in a file parallel
parallel < commands.txt

   1 # Parallel copy
   2 find . -maxdepth 1 -print0 | parallel -0 -j4 echo cp {} $dst
   3 
   4 # Check MP3s in parallel, many arguments per invocation
   5 parallel -m mp3check -Sqe ::: *mp3
   6 
   7 # Run commands in a file parallel
   8 parallel < commands.txt

SamatsWiki: CheatSheet/GNUParallel (last edited 2019-04-28 00:16:11 by SamatJain)