blob: 4c5e4a8613f83ece0f720a63550a712fffc4934a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/perl -w
use strict;
my $acs = `cut -c1-3 ../etc/areacodes.txt`;
my $plus = '';
foreach my $npa ( split(/\n/, $acs ) ) {
warn $npa;
$plus .= $npa. '5551212,';
}
print "$plus\n";
|