Answer:
True
Step-by-step explanation:
egrep command is basically used for text filtering and is an modified version of grep. using -l with egrep implies it returns the names of the matching files but does not return the line number. Following this we have the keyword here in the question it is 'cis' and * stands for the entire directory search. Therefore, the command egrep -l 'cis' * will show the names of all files in the directory with the word 'cis'.