Skip to content

Instantly share code, notes, and snippets.

@hmsk
Created July 5, 2018 19:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hmsk/faca4cf551f8547e3d85bdcfe665fd44 to your computer and use it in GitHub Desktop.
Save hmsk/faca4cf551f8547e3d85bdcfe665fd44 to your computer and use it in GitHub Desktop.
Run commands in parallel and get exit code as totalized them
cat > cmds << EOF
ls Applications
ls Desktop
ls Music
EOF
cat cmds | xargs -L1 -I BUILD -P3 bash -c BUILD
# -P[thread-num]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment