Как Grep только точное совпадение с словом в файле
grep -w "osama"
#will only match a whole word "osama" ,,, for example "osama1" will not be matched
Abdelrahman Osama
grep -w "osama"
#will only match a whole word "osama" ,,, for example "osama1" will not be matched