Reference articles on history, science, culture and more
Encyclopedia

Pexec

pexec is a command-line utility for Linux and other Unix-like operating systems which allows the user to execute shell commands in parallel. The specified code can be executed either locally or on remote hosts, in which case ssh is used to build a secure tunnel between them. Similar to shell loops, a variable is changed as the loop starting the tasks iterates, so that many values can get passed to the specified command or script. pexec is a free software utility, and part of the GNU Project. It is available under the terms of GPLv3, and is part of the current Debian stable release.

01Usage

The most common usage is to replace the shell loop, for example:

for x in alpha bravo charlie delta ; do do_something $x done

to the form of:

pexec -r alpha bravo charlie delta -e x -o - -c \ 'do_something $x'

where the set with the 4 elements of "alpha" "bravo" "charlie" and "delta" define the possible values for the (environmental) variable $x. The program pexec features also

  • automatic redirection of standard input, output and error from/to regular files;
  • taking the input set from a file instead of command line argument;
  • the capability for re-formatting the output and error streams;
  • support for mutual exclusions and atomic command executions inside the shell loop (in order to, e.g. avoid unexpectedly high I/O load);
  • using alternative remote shells instead of ssh.
  • using supervisor daemons to balance between the resources of concurrent pexec instances.

Such optional features can be requested using command-line arguments. By default, pexec tries to detect the number of CPUs and uses all of them.

Watch videos about PexecExplainers and documentaries on YouTube (opens in a new tab)

Sources and credits

This article is adapted from the Wikipedia article Pexec, written by its contributors and licensed under CC BY-SA 4.0. Fathomly has changed the layout, removed citation markers, navigation and maintenance notices, and adjusted punctuation. This adapted version is shared under the same license. For references, see the original article.

Fathomly is not affiliated with or endorsed by the Wikimedia Foundation. Spotted a problem? Tell us.