I've got a file with with a list of words each delimited by tabs. I'm trying to use grep to search for two of the words, but I can't figure out how to include the tab in the search string. I've tried:
grep -i -e "word1 \tword2"
along with several variations, but I still can't figure it out. Anyhelp?