in reply to how do i execute dependant system commands in perl (i m trying waitpid but does not work) - please help
In what way doesn't it work? system already waits for the executed command to complete so you shouldn't need anything more than:
system("zcat....> file1 &"); system("java file1 &");
to have the commands run one after the other.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: how do i execute dependant system commands in perl (i m trying waitpid but does not work) - please help
by BrowserUk (Patriarch) on Jan 27, 2012 at 10:26 UTC | |
by GrandFather (Saint) on Jan 27, 2012 at 10:32 UTC |