File Perl

#!/usr/bin/perl
open(FILE, "data.txt") || die "Can't open data.txt: $!\n";
while() {
     print if /A/;
}
close(FILE);