Help for this page

Select Code to Download


  1. or download this
    system "xv $imagename";
    
  2. or download this
    $output=`more datafile`;
    
  3. or download this
    $pid=open READER, "programname arguments|" or die "Can't run the progr
    +am: $!\n";
    while(<READER>){
       $output.=$_;
    }
    close READER;
    
  4. or download this
    $pid=open WRITETOME, "|programname arguments" or die "Couldn't fork pr
    +ocess";
    print WRITETOME "write this\n";
    close WRITETOME;