Difference between revisions of "Grep"

From Christoph's Personal Wiki
Jump to: navigation, search
(External links)
(Other)
Line 14: Line 14:
 
*[http://www.linuxfocus.org/~guido/ webgrep] — a set of 7 search utilities for web-masters
 
*[http://www.linuxfocus.org/~guido/ webgrep] — a set of 7 search utilities for web-masters
 
===Other===
 
===Other===
*[http://www.cs.helsinki.fi/u/jjaakkol/sgrep.html Structure grep]
+
*[http://www.cs.helsinki.fi/u/jjaakkol/sgrep.html Structure grep (sgrep)]
*[http://www.dcc.uchile.cl/%7Egnavarro/software/ Nondeterministic reverse grep]
+
*[http://www.dcc.uchile.cl/%7Egnavarro/software/ Nondeterministic reverse grep (NR-grep)]
 
*[http://www.grouse.com.au/ggrep/ Grouse Grep (ggrep)]
 
*[http://www.grouse.com.au/ggrep/ Grouse Grep (ggrep)]
 
*[http://www.vdesmedt.com/%7Evds2212/grep.html Python Grep (pygrep)]
 
*[http://www.vdesmedt.com/%7Evds2212/grep.html Python Grep (pygrep)]
*[http://www.ff.iij4u.or.jp/%7Enrt/lv/ Multilingual Grep]
+
*[http://www.ff.iij4u.or.jp/%7Enrt/lv/ Multilingual Grep (lv)]
  
 
==External links==
 
==External links==

Revision as of 03:56, 14 April 2008

grep (Global Regular Expression Print) is a command line utility that for a given a list of files or standard input to read, grep searches for lines of text that match one or many regular expressions, and outputs only the matching lines.

See also

  • agrepapproximate grep to facilitate fuzzy string searching
  • fgrep — fixed pattern searches
  • egrep — for searches involving more sophisticated regular expression syntax
  • ngrepnetwork grep
  • rgreprecursive grep
  • pgrep — displays the processes whose names match a regular expression
  • ugrep &mdsah; only do basic regexp string matching
  • tcgrep — rewrite of grep which uses Perl regular expression syntax
  • apachegrep — a Perl program to help webmasters go through their apache logs
  • rexgrep — GUI frontend to grep
  • webgrep — a set of 7 search utilities for web-masters

Other

External links