Part 1: GNU Parallel script processing and execution
Uploader Comments (OleTange)
Video Responses
All Comments (27)
-
Im using the program and I love it! Is there a way I can use my distributed filesystem to access data for the tasks instead of passing it the way it does now? I use glusterFS and I just want to process in my mount
-
This is lovely stuff, thanks for sharing... think ill try this on my data mining grep script.
Is your time script available for borrowing?
-
@kalinin76 test -z checks if a string's length is zero.
In this case, the string being tested is probably user-configurable and can be empty.
This does not look like a mistake, and they also didn't mean test -d because mkdir does nothing if you try to create a directory that already exists.
-
Thank you for creating what looks like an excellent tool, and for providing a fantastic tutorial. I'm looking forward to trying it out.
-
@kalinin76 it says check if that directory exists or make that directory if no error exists (the -p).
same as test -z /usr/local/bin && mkdir /usr/local/bin
-
I think the focus is on the part where he used multiple machines. Anyways, xargs -P would mean that porting to parallel is even easier.
-
Yesterday, I started to convert my scripts to use parallel -- it is a great tool and so far conversion is smooth. Thank you very much!
What shell are you using? Curious with respect to the file renaming syntax using {} and {.}.bz2
thomasknauth 1 year ago 5
@thomasknauth the {}, {.}, {3}, and {3.} are all GNU Parallel specific. It is not dependent on the shell.
OleTange 1 year ago 7