xe
Execute a command once for each line piped from another command or file. More information: https://github.com/leahneukirchen/xe.
-
Run a command once for each line of input data as arguments:
{{arguments_source}} | xe {{command}} -
Execute the commands, replacing any occurrence of the placeholder (marked as
{}) with the input line:
{{arguments_source}} | xe {{command}} {} {{optional_extra_arguments}} -
Execute a shellscript, joining every
Nlines into a single call:
echo -e 'a\nb' | xe -N{{2}} -s 'echo $2 $1' -
Delete all files with a
.backupextension:
find . -name {{'*.backup'}} | xe rm -v -
Run up to
max-jobsprocesses in parallel; the default is 1. Ifmax-jobsis 0, xe will run as many processes as cpu cores:
{{arguments_source}} | xe -j {{max-jobs}} {{command}}
License and Disclaimer
The content on this page is copyright © 2014—present the tldr-pages team and contributors.This page is used with permission under Creative Commons Attribution 4.0 International License.
While we do attempt to make sure content is accurate, there isn't a warranty of any kind.