Help for this page

Select Code to Download


  1. or download this
    my $ret = system( "\"D:\\Program Files\\bin\\t.pl\"" );
    
  2. or download this
    my $ret = system( q[ "D:\Program Files\bin\t.pl" ]);
    
  3. or download this
    my $ret = system( '"D:\Program Files\bin\t.pl"' );
    
  4. 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>