Forrest logo
back to context overview

xe

List of commands for xe:

  • xe:tldr:0e0a8 xe: Execute a shellscript, joining every `N` lines into a single call.
    $ echo -e 'a\nb' | xe -N${2} -s 'echo $2 $1'
    try on your machine
    explain this command
  • xe:tldr:2a534 xe: Execute the commands, replacing any occurrence of the placeholder (marked as `{}`) with the input line.
    $ ${arguments_source} | xe ${command} {} ${optional_extra_arguments}
    try on your machine
    explain this command
  • xe:tldr:be62c xe: Run up to `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}
    try on your machine
    explain this command
  • xe:tldr:d8d51 xe: Run a command once for each line of input data as arguments.
    $ ${arguments_source} | xe ${command}
    try on your machine
    explain this command
  • xe:tldr:ef9aa xe: Delete all files with a `.backup` extension.
    $ find . -name ${'*-backup'} | xe rm -v
    try on your machine
    explain this command
back to context overview