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