# output file
$newfile = ">./batch_test.txt";
# open the new .txt file
open(BATCH, "$newfile") || die "Can't open $newfile : the batch_test file. $!";
to
# output file
$newfile = "./batch_test.txt";
# open the new .txt file
open(BATCH, ">$newfile") || die "Can't open $newfile : the batch_test file. $!";
and
print $newfile;
print "\n";
to
print BATCH $_,"\n";
In reply to Re: Getting from Oracle to become a text file
by Rhose
in thread Getting from Oracle to become a text file
by Zo
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |