GNU parallel

sudo apt install parallel
parallel echo {} ">" {}.txt ::: {1..20}

https://www.gnu.org/software/parallel/parallel_examples.html

Back