Re: Need your help regarding CGI

2003-05-29 Thread zentara
On Wed, 28 May 2003 22:42:32 -0700 (PDT), [EMAIL PROTECTED] (Soumyadeep Nandi) wrote: >>Maybe try to run it as a "system" command. > >>my $programtorun = 'ls'; >>my @parameters= qw/. ../; >>my @cmdline = ( $programtorun, @parameters ); >>system (@cmdline); > >>It can be a bit tricky

Re: Need your help regarding CGI

2003-05-29 Thread Soumyadeep nandi
Thanks, >Maybe try to run it as a "system" command. >my $programtorun = 'ls'; >my @parameters= qw/. ../; >my @cmdline = ( $programtorun, @parameters ); >system (@cmdline); >It can be a bit tricky getting all the parameters to your system >command >to be quoted properly, try a littl

RE: Need your help regarding CGI

2003-05-28 Thread Bob Showalter
Soumyadeep nandi wrote: > Hi Everybody, > > As a naive cgi programmer, I want to get rid of a > problem, for that, I am keen, awaiting your > suggestions. I doubt, I could not present my case in > front of you properly. Anyway, my problem spins around the following. > > I am running a CGI script

Re: Need your help regarding CGI

2003-05-28 Thread zentara
On Tue, 27 May 2003 22:21:55 -0700 (PDT), [EMAIL PROTECTED] (Soumyadeep Nandi) wrote: >I am running a CGI script in which I am running a >system command. The scripts is as follows: >`/var/www/cgi-bin/emboss/water >/var/www/cgi-bin/emboss/water1.seq >/var/www/cgi-bin/emboss/water2.seq -gapopen 10

Need your help regarding CGI

2003-05-28 Thread Soumyadeep nandi
Hi Everybody, As a naive cgi programmer, I want to get rid of a problem, for that, I am keen, awaiting your suggestions. I doubt, I could not present my case in front of you properly. Anyway, my problem spins around the following. I am running a CGI script in which I am running a system command.