Help for this page

Select Code to Download


  1. or download this
    open FH, "|system_command";
    print FH <<EOF
    
    EOF
    
  2. or download this
    open my $fh, "|-", "system_command";
    
  3. or download this
    open FH, "|system_command";
    my $stuff="some things to pass along to system command\n";
    print FH $stuff;