Size: 265
Comment:
|
Size: 352
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 3: | Line 3: |
find . -maxdepth 1 -print0 | parallel -0 -j4 echo cp -avn {} $dst | # Because we are copying the current directory, make sure $dst is correct find . -maxdepth 1 -mindepth 1 -print0 | parallel -0 -j4 echo cp -avn {} $dst |
1 # Parallel copy
2 # Because we are copying the current directory, make sure $dst is correct
3 find . -maxdepth 1 -mindepth 1 -print0 | parallel -0 -j4 echo cp -avn {} $dst
4
5 # Check MP3s in parallel, many arguments per invocation
6 parallel -m mp3check -Sqe ::: *mp3
7
8 # Run commands in a file parallel
9 parallel < commands.txt