Re: Simple query

2012-07-12 Thread Ole Tange
On Wed, Jul 11, 2012 at 3:02 AM, etheridge stephen wrote: > Hi all > I have quite happily got parallel working to run a distributed grep over a > given subdirectory of two machines with a command something like: > > parallel -q -onall -sshloginfile mycomputers grep -E -H '123456789' > :::/home/tes

/bin/bash: ... Permission Denied

2012-07-12 Thread Alex Muir
Hi, I've installed parallel today and used the the example command effectively parallel traceroute ::: foss.org.my gnu.org freenetproject.org However I'm trying to run the following command using parallel passing in the file name. This command works at the command line sh confi

Re: /bin/bash: ... Permission Denied

2012-07-12 Thread Alex Muir
Okay so I've now figured out that I need full paths perhaps ... and that the single quote I've put around the command are causing the error. However now the {} is not being replaced as a dynamic file name from the zip file listing. Although it works if I hardcode the zip file path replacing {} ls

Re: /bin/bash: ... Permission Denied

2012-07-12 Thread Ben B.
I believe the semi-colon in "parallel -j+0;" is terminating the parallel command then the sh is running as a separate command. On Thu, Jul 12, 2012 at 2:18 PM, Alex Muir wrote: > Okay so I've now figured out that I need full paths perhaps ... and that the > single quote I've put around the comman

Re: /bin/bash: ... Permission Denied

2012-07-12 Thread Alex Muir
Removing the semi-colon made it work... Cheers On Thu, Jul 12, 2012 at 2:28 PM, Ben B. wrote: > I believe the semi-colon in "parallel -j+0;" is terminating the > parallel command then the sh is running as a separate command. > > On Thu, Jul 12, 2012 at 2:18 PM, Alex Muir wrote: > > Okay so I'v