This commit is contained in:
Brian West 2014-06-17 17:11:04 -05:00
parent 24495304c8
commit c066fedffe
1 changed files with 1 additions and 0 deletions

View File

@ -21,6 +21,7 @@ my @nums = <NUMS>;
foreach my $num (@nums) {
chomp $num;
$num =~ s/^1//;
next if lenght($num) != 10;
print "Dialing from $num\n";
my @digits = split(//, $num);
my $dial = join('w', @digits);