Help for this page

Select Code to Download


  1. or download this
      $file = <FILE>;
    
  2. or download this
      open(IN, $ARGV[0]);
      open(OUT, ">$ARGV[1]");
      print OUT <IN>;
      close IN;
      close OUT;