grep [options] regexp [files]Search one or more files for lines that match a regular expression regexp. Regular expressions are described in Chapter 6. Exit status is 0 if any lines match, 1 if not, and 2 for errors. See also egrep and fgrep.
-bPrecede each line with its block number. (Not terribly useful.)
-cPrint only a count of matched lines.
-e patUse this if pat begins with -. Solaris: this option is only available in /usr/xpg4/bin/grep, not /usr/bin/grep. It is common, though, on many modern Unix systems.
-hPrint matched lines but not filenames (inverse of -l).
-iIgnore uppercase and lowercase distinctions.
-lList filenames but not matched lines.
-nPrint lines and their line numbers.
-sSuppress error messages for nonexistent or unreadable files.
-vPrint all lines that don't match regexp.
-wRestrict regexp to matching a whole word (like using \< and \> in vi). Not on SVR4, but common on many commercial Unix systems.
List the number of users who use the C shell:
grep -c /bin/csh /etc/passwd
List header files that have at least one #include directive:
grep -l '^#include' /usr/include/*
List files that don't contain pattern:
grep -cpattern files| grep :0