- or download this
my $ret = system( "\"D:\\Program Files\\bin\\t.pl\"" );
- or download this
my $ret = system( q[ "D:\Program Files\bin\t.pl" ]);
- or download this
my $ret = system( '"D:\Program Files\bin\t.pl"' );
- or download this
P:\test>copy con "d:\program files\test.pl8"
print "Hi there! from $0";
...
Hi there! from D:\program files\test.pl8
P:\test>