106k views
5 votes
The true or false questions.

The command: egrep -l 'cis' * will show the name of all files in the current directory where the name contains the word 'cis'

1 Answer

4 votes

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'.

User Slitvinov
by
5.0k points