Grep: Difference between revisions

From 탱이의 잡동사니
Jump to navigation Jump to search
No edit summary
Line 3: Line 3:


== Basic ==
== Basic ==
**grep 명령어는 패턴과 매칭되는 라인을 출력하는 유틸리티이다.  
Unix/Linux *grep 명령어는 패턴과 매칭되는 라인을 출력한다.
 
<pre>
<pre>
grep [OPTIONS] PATTERN [FILE...]
grep [OPTIONS] PATTERN [FILE...]

Revision as of 13:22, 27 July 2016

Overview

Linux/Unix 유틸리티 grep, egrep, fgrep, rgrep 내용 정리.

Basic

Unix/Linux *grep 명령어는 패턴과 매칭되는 라인을 출력한다.

grep [OPTIONS] PATTERN [FILE...]
grep [OPTIONS] [-e PATTERN | -f FILE] [FILE...]

Options

-i, --ignore-case

대/소문자를 가리지 않는다.

-v, --invert-match

반대로 매칭을 한다. 즉, 매칭되지 않는 문자열만을 표시한다.