-c → line count with the word in it -i → case-insensitive -w → search for whole word -n → show line number -v → reverse, which means show the lines that the word is missing
grep “^unix” file → starting with “unix” RegEx grep “unix$” file → ending with “unix” RegEx