Search

How to seach for file that contains word 'Error' in linux?

grep -i "Error" /log

Above command is used for seaching word 'Error' in /log file.
-i is to ignore case senstive.

No comments: