From f52821afa64f34383856b8ff05c3228b6a4f2302 Mon Sep 17 00:00:00 2001 From: DARKGuy Date: Wed, 18 Oct 2017 15:31:15 -0600 Subject: [PATCH] #33 add GNU parallelshell explanation --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 1e958a9..440472f 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,11 @@ non-zero exit status, the rest are stopped and the exit code carries through. * `parallelshell` outputs all jobs stdout/err to its stdout/err. background jobs do that... kind of coincidentally (read: unreliably) +**So what's the difference between GNU parallel and this?** + +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! :) ### Install