Viewing profile — tange
tange
HN member- Joined
- Fri, Jul 09, 2010, 2:34 PM UTC
- HN karma
- 6
- Public activity
- 5 items
- HN profile
- View on Hacker News ↗
About tange
No profile information was provided.
Recent public activity
-
comment
Comment #2872354
You can emulate it with sem: find . -exec sem --id my_find -j3 sleep 4\; echo {} \; See more about sem: http://www.gnu.org/software/parallel/sem.html
-
comment
Comment #1805141
Please read http://www.gnu.org/software/parallel/man.html#differences_be... before selecting dxargs.
-
comment
Comment #1777122
Your use of xargs can lead to nasty surprises because of the separator problem http://en.wikipedia.org/wiki/Xargs#The_separator_problem GNU Parallel http://www.gnu.org/software/par…
-
comment
Comment #1505315
Like this (if you have GNU Parallel http://www.gnu.org/software/parallel/ installed) to run on multiple computers: find images | parallel -j+0 –trc {.}.out -S server1,server2,: “do…
-
comment
Comment #1500724
xargs cannot replace {} with a lot of arguments, so if mv did not have --target-directory, then xargs would have to do: find ... | xargs -0 -i {} mv {} ~/Pictures which would run o…