Execute a command once for each line piped from another command or file. More information: https://github.com/leahneukirchen/xe.
arguments_source | xe command
{}
) with the input line:arguments_source | xe command {} optional_extra_arguments
N
lines into a single call:echo -e 'a\nb' | xe -N2 -s 'echo $2 $1'
.backup
extension:find . -name '*.backup' | xe rm -v
max-jobs
processes in parallel; the default is 1. If max-jobs
is 0, xe will run as many processes as cpu cores:arguments_source | xe -j max-jobs command