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

xargs

  • Execute a command with piped arguments coming from another command, a file, etc.
    The input is treated as a single block of text and split into separate pieces on spaces, tabs, newlines and end-of-file.
    More information: <https://pubs.opengroup.org/onlinepubs/9699919799/utilities/xargs.html>.
  • Trick copyright: tl;dr; <https://github.com/tldr-pages/tldr>

{{arguments_source}} | xargs -P {{max-procs}} {{command}}

click the source code to copy install xargs on any operating system with command-not-found.com