Simple xargs and apply replacement for processing input with parallel execution
Simple xargs and apply replacement
xe$ xe -s 'echo Processing: {}' < input.txt$ find . -name '*.jpg' | xe -P 4 'convert {} {}.webp'$ xe -a 'git commit -m' 'fix bug' 'update docs'$ seq 1 100 | xe -N 10 'echo Processing batch: {}'$ ls *.md | xe 'pandoc {} -o {.}.html'