Which of the following commands will find the string foo in the file filel M, regardless of foo being in upper or lower case letters?

Which of the following commands will find the string foo in the file filel M, regardless of foo being in upper or lower case letters?

Which of the following commands will find the string foo in the file filel M, regardless of foo being in upper or lower case letters?

A.
grep-i foo | file 1 .txt

B.
grep-nfilel.txt<foo

C.
grep-nfoofile1.txt

D.
cat file 1.txt > grep-n foo

E.
catfilel.txt| grep-ifoo



Leave a Reply 2

Your email address will not be published. Required fields are marked *


Nosferatu

Nosferatu

cat file1.txt | grep -i foo

Tom Liddle

Tom Liddle

another case of ‘oh, I forgot the spacebar’….