Q. What will be printed for the command below?
Code:$ grep –c “^echo” abc
β
Correct Answer: (B)
The count of lines which begin with the pattern echo in file abc
$ grep –c “^echo” abc
You must be Logged in to update hint/solution