grep
Which command would result in the following output:
and the presence of absence:
grep "of" haiku.txt
grep -E "of" haiku.txt
grep -w "of" haiku.txt
grep -i "of" haiku.txt
-w
option looks only for whole-word matches. The other options will also match ‘of’ when part of another word.