Help for this page

Select Code to Download


  1. or download this
    Process p = Runtime.getRuntime().exec("c:/perl.exe"  C:/CreateER.pl 
    "Please \n ignore \n my friend");
    
  2. or download this
    my $pid = open( PROC, "|-", "c:/perl.exe c:/scripts2/CreateER.pl" )
        or die "cannot launch perl process: $!";
    
    print PROC "anything\nyou\nwant\nto\ndo\n";
    close PROC;
    
  3. or download this
    Please \\n ignore \\n my friend