Help for this page

Select Code to Download


  1. or download this
    sub copy( source, destination ) {
        open SOURCEFILE "source";
    ...
        close DESTINATIONFILE;
        close SOURCEFILE;
    }
    
  2. or download this
    open FILE "<$file";
    
  3. or download this
    open FILE ">$file";
    
  4. or download this
    open FILE ">>$file";