[open-perl-ide-user] How do I run a Perl program with .bat extension OR set my own per l compilerin
Brought to you by:
jguentherodt
From: Vaseem A. <VA...@se...> - 2002-12-12 22:25:22
|
Hi, I have perl programs with a .bat extension and has following few lines at the beginning. I want to execute using perl compiler (active state's active compiler does not have a problem with this) if "%OS%" == "Windows_NT" goto WinNT perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9 goto endofperl :WinNT perl -w -x -S "%0" %* if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl if %errorlevel% == 9009 echo You do not have Perl in your PATH. if errorlevel 1 goto script_failed_so_exit_with_non_zero_val 2>nul goto endofperl @rem '; #!perl Thanks Vaseem Aziz |