parallel-bash
parallel-bash copied to clipboard
Parallel processing of commands in pure bash along with the support of functions.
Results
2
parallel-bash issues
Sort by
recently updated
recently updated
newest added
For example, lets say I have the following ```bash printf "%b\n" {1..10} | ./parallel-bash -p 8 ./script.sh {} ``` Instances 9 and 10 won't be run.
fixes #1 In _execute::_process_arguments::parallel-bash() We append each command to the cmds string, then stop and evaluate it (and run the commands) only once the job index reaches that of $NO_OF_JOBS....