1 echo '### Test of --eta'
3 seq 1 10 | stdout parallel --eta "sleep 1; echo {}" | wc -l
5 echo '### Test of --eta with no jobs'
6 ### Test of --eta with no jobs
7 stdout parallel --eta "sleep 1; echo {}" < /dev/null
9 Computers / CPU cores / Max jobs to run
11 \rETA: 0s Left: 0 AVG: 0.00s 0
12 echo '### Test of --progress'
13 ### Test of --progress
14 seq 1 10 | stdout parallel --progress "sleep 1; echo {}" | wc -l
16 echo '### Test of --progress with no jobs'
17 ### Test of --progress with no jobs
18 stdout parallel --progress "sleep 1; echo {}" < /dev/null
20 Computers / CPU cores / Max jobs to run
23 echo '### --timeout --onall on remote machines: 2*slept 1, 2 jobs failed'
24 ### --timeout --onall on remote machines: 2*slept 1, 2 jobs failed
25 parallel -j0 --timeout 6 --onall -S localhost,$SSHLOGIN1 'sleep {}; echo slept {}' ::: 1 8 9 ; echo jobs failed: $?