Files
example-code-2e/20-concurrency/primes/run_procs.sh
Luciano Ramalho a3bf91bc59 ch20 files
2021-01-29 21:05:03 -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