##
open a text file
while I read a line from the file
look for a name in the first column
if the name is what I want, do stuff to the row
end while
####
# still pseudo-code here
open inputFile or die
while ( read line from inputFile ) {
get first item from tab-delimited line
if ( first item equals "something I need" ) {
do something important
}
}
close file