- or download this
^L ( identifies beginning of record in file)
...
(EOE) - which is end of record marker
- or download this
<account#><name><address><city state zip><begin-period-date><end-perio
+d-date>
- or download this
open(ADDRESSIN, "filename") || die "could not open file for read: $!\n
+";
while($line = <ADDRESSIN>)
...
"this is where I need help"
$line1 = <name>
$line2 = <address>
- or download this
printf "%-40s%-40s\n", $line1, $line2,$line3;