On Nov 5, 11:17 pm, [EMAIL PROTECTED] (Itshardtogetone)
wrote:
> Hi,
> Whats the perl command to run a script or program.
> Thanks
hello,
typically you will open a shell/command prompt, change directory to
where your script is and the execute with "perl script"
So, say for example your script is
itshardtogetone wrote:
Hi,
Hello,
Whats the perl command to run a script or program.
my $standard_output = qx;
my $error_code = system q;
exec q;
open my $PIPE, '-|', q;
perldoc -f qx
perldoc -f system
perldoc -f exec
perldoc -f open
perldoc perlopentut
perldoc perlipc
John
--
Perl
Hi,
Whats the perl command to run a script or program.
Thanks