Ask Question
Today, 17:22

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'

+4
Answers (1)
  1. Today, 17:40
    0
    True

    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'.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “The true or false questions. The command: egrep - l 'cis' * will show the name of all files in the current directory where the name ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers