read in all the keywords from a file into a hash as keys get a listing of all the files I want to search into an array, for each file { for each line { for each word in the line { if word is in hash of wanted words{ log existance of the word } } } } #### read in all the keywords from a file and make them into a regular expression get a listing of all the files I want to search into an array, for each file { for each line { if line match RE { log it } } }