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