Simple xargs and apply replacement with intuitive syntax
Simple xargs and apply replacement
xe
$ echo -e 'file1.txt\nfile2.txt' | xe cat
$ xe -0 rm < <(find . -name '*.tmp' -print0)
$ seq 1 10 | xe -j 4 'echo Processing: {}'