1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
GREP(1) GREP(1)
NAME
grep, egrep, fgrep - print lines matching a pattern
SYNOPSIS
grep [options] PATTERN [FILE...]
grep [options] [-e PATTERN | -f FILE] [FILE...]
DESCRIPTION
Grep searches the named input FILEs (or standard input if no files are named, or the file name - is given) for lines
containing a match to the given PATTERN. By default, grep prints the matching lines.
..........
-R, -r, --recursive
Read all files under each directory, recursively; this is equiv-
alent to the -d recurse option. |