open(IN, "/some/file") || die "Cant open /some/file: $!\n"; while () { next unless (m/^$some_match/); chomp($capture = $_); } close(IN);