Superman has asked for the wisdom of the Perl Monks concerning the following question:
I have a webform which retrieves data and passes it to a CGI script. My script retrieves 3 variables which then have to run 4 different C++ programs to retrieve the information i want
At the moment i have defined my commands asand run them using the system command$command1="/cgi-bin/c++prog1"."|" $command2="/cgi-bin/c++prog2"."|" $command3="/cgi-bin/c++prog3"."|" $command4="/cgi-bin/c++prog4"."|"
but the script is not working!system("$command1"); system("$command2");...
If i want to run a simple script then using a simple filehandle command does the trick but i need to run all 4 programs in the order that they are!
Is there anyone there that can help me?
thanking you in advance
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Running another program
by chromatic (Archbishop) on Jul 21, 2001 at 05:43 UTC | |
|
Re: Running another program
by synapse0 (Pilgrim) on Jul 21, 2001 at 06:28 UTC | |
|
Re: Running another program
by tadman (Prior) on Jul 21, 2001 at 10:37 UTC | |
|
Re: Running another program
by bschmer (Friar) on Jul 21, 2001 at 07:06 UTC |