Help for this page

Select Code to Download


  1. or download this
    close(STDIN);
    system($ci, '-u', '-zLT', $file);
    
  2. or download this
    open(STDSAVE, "<&STDIN");
    close(STDIN);
    system(...);
    open(STDIN, "<&STDSAVE");