blob: 210a16c60f1a1821228b6c46b1708301aca272ce (
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";
|