You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
BAREEDU SAI SANDEEP SANDEEP 67a9e8efa1 Pid build and working 4 years ago
..
.depend Pid build and working 4 years ago
.gdbinit Pid build and working 4 years ago
Makefile Pid build and working 4 years ago
binary.c Pid build and working 4 years ago
binary.d Pid build and working 4 years ago
binary.o Pid build and working 4 years ago
file.c Pid build and working 4 years ago
file.d Pid build and working 4 years ago
file.o Pid build and working 4 years ago
grep Pid build and working 4 years ago
grep.1 Pid build and working 4 years ago
grep.c Pid build and working 4 years ago
grep.d Pid build and working 4 years ago
grep.h Pid build and working 4 years ago
grep.o Pid build and working 4 years ago
mmfile.c Pid build and working 4 years ago
mmfile.d Pid build and working 4 years ago
mmfile.o Pid build and working 4 years ago
queue.c Pid build and working 4 years ago
queue.d Pid build and working 4 years ago
queue.o Pid build and working 4 years ago
readme.md Pid build and working 4 years ago
util.c Pid build and working 4 years ago
util.d Pid build and working 4 years ago
util.o Pid build and working 4 years ago

readme.md

FreeGrep

The grep utility searches any given input files, selecting lines that match one or more patterns. By default, a pattern matches an input line if the regular expression in the pattern matches the input line without its trailing newline. An empty expression matches every line. Each input line that matches at least one of the patterns is written to the standard output. grep is used for simple patterns and basic regular expressions; egrep can handle extended regular expressions. fgrep is quicker than both grep and egrep, but can only handle fixed patterns (i.e. it does not interpret regular expressions). Patterns may consist of one or more lines, allowing any of the pattern lines to match a portion of the input. zgrep, zegrep, and zfgrep act like grep, egrep, and fgrep, respectively, but accept input files compressed with the compress or gzip compression utilities.