- or download this
@echo off
c:\devt\perl\bin\perl.exe %1 %2 %3 %4 %5 %6 %7 %8 %9
echo on
- or download this
perlbat -V > stdout.log - or download this
c:\devt\perl\bin\perl -V > stdout.log - or download this
@echo off
c:\devt\perl\bin\perl.exe -e "$so=qw(stdout.log); $se=$so; open STDOUT
+, qw(>).$so; open STDERR, qw(>).$se; @args = qw(perl, %1, %2, %3, %4,
+ %5, %6, %7, %8, %9); system(@args) == 0 or warn qw(Failure: $?);"
echo on
- or download this
$so = qw( stdout.log );
$se = $so;
open STDOUT, qw( > ) . $so;
open STDERR, qw( > ) . $se;
@args = qw( perl, %1, %2, %3, %4, %5, %6, %7, %8, %9 );
system( @args ) == 0 or warn qw( Failure: $? );
- or download this
@args = qw( perl, @ARGV ); - or download this
@echo off
'-----
' plog.bat: Optional logging for perl on Win9x.
...
:ciao
echo on
- or download this
open STDERR, ">&STDOUT";