| name | parallel |
| description | Use this skill when the user wants to run commands in parallel, process multiple files simultaneously, or batch-process arguments with GNU parallel. |
GNU parallel Plugin
Build and execute shell commands in parallel. Run commands on multiple files, CPUs, or hosts simultaneously.
Commands
Version
parallel self version — Print GNU parallel version
Utility
parallel _ _ — Passthrough to GNU parallel CLI
Usage Examples
- "Run multiple curl requests in parallel"
- "Process all these files with the same command"
- "Resize all images in parallel"
- "Run the same script on multiple inputs"
Installation
brew install parallel
Or via apt:
sudo apt-get install parallel
Examples
parallel _ _ -a commands.txt
parallel _ _ wc {} ::: *.txt
parallel _ _ --progress gzip {} ::: *.log
parallel _ _ -j4 convert {} {.}.jpg ::: *.png
parallel _ _ -S host1,host2 command ::: args
parallel self version
parallel _ _ --help