Grep

From 탱이의 잡동사니
Revision as of 13:20, 27 July 2016 by Pchero (talk | contribs) (Created page with "== Overview == Linux/Unix 유틸리티 grep, egrep, fgrep, rgrep 내용 정리. == Basic == **grep 명령어는 패턴과 매칭되는 라인을 출력하는 유틸리티이...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Overview

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

Basic

    • grep 명령어는 패턴과 매칭되는 라인을 출력하는 유틸리티이다.

Options

-i, --ignore-case

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

-v, --invert-match

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