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