Help for this page

Select Code to Download


  1. or download this
       $status = system( "$program arg1 $arg2" );
    
  2. or download this
    open( SH, "| /bin/csh" ) or die "Can't start subshell: $!";
    print SH "echo this is foo bar\n";
    print SH "source some_script\n";
    print SH "echo \$some_obscure_shell_variable_set_by_some_script\n";
    #...