Help for this page

Select Code to Download


  1. or download this
    %file2 = 'Source.txt' ;      # Name the file with source addresses
    open(INFO, "<%file2" ) ;     # Open the file
    
  2. or download this
    $file2 = 'Source.txt' ;      # Name the file with source addresses
    open(INFO, "<$file2" ) ;     # Open the file
    
  3. or download this
    open APPEND, ">>conversion.txt";
    foreach $line1 (@lines1) {
    ...
       }
    }
    close APPEND;