-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Difference between GNU Parallel? #33
Comments
Hey @ole-tange thanks for the issue. The biggest difference is that parallelshell is an npm module and gnu parallel isn't. While they probably do similar things, albeit (gnu) parallel being more advanced, parallelshell is an easier option to work with when using npm (because it's an npm module). If you have gnu parallel installed on all the machines you project will be on, then by all means use it! |
Perhaps the readme could mention it? For those who know GNU Parallel already, seeing it mentioned in the first paragraph would quickly explain the purpose of this module. |
@anko It's not a nagware I suppose. |
#33 add GNU parallelshell explanation
I added @keithamus explanation to the Readme file so it's clearer. Thanks! |
Can you explain what the difference is between parallelshell and GNU Parallel? Specifically:
parallel --halt now,fail=1 ::: "echo 1" "echo 2" "echo 3"
The text was updated successfully, but these errors were encountered: