Re: whats the perl command to run/execute a program or script

2008-11-08 Thread weezer316
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

Re: whats the perl command to run/execute a program or script

2008-11-05 Thread John W. Krahn
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

whats the perl command to run/execute a program or script

2008-11-05 Thread itshardtogetone
Hi, Whats the perl command to run a script or program. Thanks