programming-examples/perl/Statement/while statement to read input.pl

10 lines
211 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
#!/bin/perl
while(<>){
($name, $phone)=split(/:/);
unless($name eq "barbara"){
$record="$name\t$phone";
print "$record";
}
}
print "\n$name has moved from this district.\n";