in reply to Re^2: database sorter script
in thread database sorter script

A way to do this would be like this:
my $letter = "B"; open(my $in, "input_file") or die "Couldn't open file for read: $!"; while(<$in>) { print if m/^$letter/; }
You could improve it slightly by stopping once you're done processing a certain letter, but I leave that as an exercise to the reader...:)

thor

Feel the white light, the light within
Be your own disciple, fan the sparks of will
For all of us waiting, your kingdom will come