xe

Simple xargs and apply replacement with intuitive syntax

brewmacoslinux
Try with needOr install directly
Source

About

Simple xargs and apply replacement

Commands

xe

Examples

Execute command for each line of input$ echo -e 'file1.txt\nfile2.txt' | xe cat
Process multiple arguments with placeholder$ xe -0 rm < <(find . -name '*.tmp' -print0)
Parallel execution with job control$ seq 1 10 | xe -j 4 'echo Processing: {}'