Forrest logo
tool overview
On this page you find all important commands for the CLI tool ${arguments_source}. If the command you are looking for is missing please ask our AI.

${arguments_source}

List of commands for ${arguments_source}:

  • xargs:tldr:43baf xargs: Run multiple chained commands on the input data.
    $ ${arguments_source} | xargs sh -c "${command1} && ${command2} | ${command3}"
    try on your machine
    explain this command
  • xargs:tldr:555bd xargs: Parallel runs of up to `max-procs` processes at a time; the default is 1. If `max-procs` is 0, xargs will run as many processes as possible at a time.
    $ ${arguments_source} | xargs -P ${max-procs} ${command}
    try on your machine
    explain this command
  • xargs:tldr:c7d2f xargs: Run a command using the input data as arguments.
    $ ${arguments_source} | xargs ${command}
    try on your machine
    explain this command
  • xargs:tldr:fea5c xargs: Execute the command once for each input line, replacing any occurrences of the placeholder (here marked as `_`) with the input line.
    $ ${arguments_source} | xargs -I _ ${command} _ ${optional_extra_arguments}
    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
tool overview