unix commands rtfm: grep(1), egrep(1) & fgrep(1)

9
UNIX Commands RTFM: grep(1), egrep(1) & fgrep(1) Gilbert Detillieux April 13, 2010 MUUG Meeting

Upload: raoul

Post on 04-Jan-2016

38 views

Category:

Documents


1 download

DESCRIPTION

UNIX Commands RTFM: grep(1), egrep(1) & fgrep(1). Gilbert Detillieux April 13, 2010 MUUG Meeting. What’s in a name?. grep : g lobal r egular e xpression p rint Comes from UNIX editor command: g/ re /p egrep : extended grep Extended (or full ) regular expressions - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: UNIX Commands RTFM: grep(1), egrep(1) & fgrep(1)

UNIX CommandsRTFM: grep(1), egrep(1) & fgrep(1)

Gilbert DetillieuxApril 13, 2010MUUG Meeting

Page 2: UNIX Commands RTFM: grep(1), egrep(1) & fgrep(1)

What’s in a name?...

grep: global regular expression printComes from UNIX editor command: g/re/p

egrep: extended grepExtended (or full) regular expressions

fgrep: fast grep or fixed-string grepMatches fixed or literal stringsHistorically, much faster than grep/egrep

Page 3: UNIX Commands RTFM: grep(1), egrep(1) & fgrep(1)

Limited Regular Expressions

A.k.a. “basic” regular expressions Alpha-numerics match literally So does some punctuation, unless special Similar to wildcards in file-name “globbing”

“.” matches any single character “*” matches any number of previous character

(including zero) Use “\.” (or “\*”) to match those

special characters literally

Page 4: UNIX Commands RTFM: grep(1), egrep(1) & fgrep(1)

Limited Regular Expressions (cont.)

Character classes:“[0-9]” matches any digit“[^A-Za-z]” matches anything but letters“[0-9-]” matches “-” (literally) or a digit“[][]” matches “]” or “[” (literally)

Anchors:“^” matches beginning of line: “^From ”“$” matches end of line: “ *$”

Page 5: UNIX Commands RTFM: grep(1), egrep(1) & fgrep(1)

Full Regular Expressions

A.k.a. “extended” regular expressions Additional repetition operators like “*”…

“?” matches zero or one instance of previous character or sub-expression

“+” matches one or more instances of previous character or sub-expression

Page 6: UNIX Commands RTFM: grep(1), egrep(1) & fgrep(1)

Full Regular Expressions (cont.)

Sub-expressions enclosed in “(…)”:“(the )?end” matches “end” or “the end”“(pretty )*please”

Alternatives separated by “|”…“(this|that|the other)”“(this|that|)”

And many more extensions (possibly)…

Page 7: UNIX Commands RTFM: grep(1), egrep(1) & fgrep(1)

grep(1) Man Page

NAMEgrep, egrep, fgrep – print lines matching a

pattern SYNOPSIS

grep [-cilnqv]... PATTERN [ FILE … ] grep [-cilnqv]... [ -e PATTERN | -f FILE ]

[ FILE … ]

Page 8: UNIX Commands RTFM: grep(1), egrep(1) & fgrep(1)

grep(1) Man Page (cont.)

OPTIONS -c only prints a count of matching lines -i ignores letter case distinctions -l only prints list of names of files with matches -n prefixes line numbers to matching lines -q is quiet, returning only appropriate exit status -v selects variant or non-matching lines -e PATTERN makes pattern explicit,

even if starting with “-” -f FILE takes list of patterns from file, one per line

Page 9: UNIX Commands RTFM: grep(1), egrep(1) & fgrep(1)

Questions?