example-code-2e/19-concurrency/primes/run_procs.sh
2021-09-10 12:34:39 -03:00

3 lines
80 B
Bash
Executable File

#/bin/bash
for i in {1..20}; do echo -n $i; python3 procs.py $i | tail -1; done