Help for this page

Select Code to Download


  1. or download this
    open( IN, '<', $filename ); # input
    open( OUT, '>', 'newfilename.txt' ); # output
    ...
    }
    close IN;
    close OUT;