- or download this
foreach $table (@tables) {
chomp $table;
...
EOT
}
- or download this
open (INFILE, "< $infile") or die "Couldn't open $infile: $!";
open (OUTFILE, "> $outfile") or die "Couldn't open $outfile: $!";
...
close (INFILE);
close (OUTFILE);
- or download this
foreach $table (@tables) {
print OUTFILE (map "$_\n",
"BEGIN",
...
"/\n",
);
}