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
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
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
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
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.