Answer:
grep -i backman *
Step-by-step explanation:
grep command is a unix command line utility that is use to search for plain text.
Running
grep -i backman *
command will bring back all occurrence of backman in the directory while ignoring the case whether it's upper or lower.
grep is the keyword
The -i means grep should ignore the case.
Then backman is the search word to find.
The wildcat (*) means all occurrence of backman should be returned.