본문 바로가기
개발/linux

linux grep 사용법, 설명

by amkorousagi 2022. 10. 21.

linux grep

 

사용하는 이유

텍스트(파일, 표준 출력 등)에서 일치하는 패턴(정규식)을 검색하기 위해.

기본 사용법

grep <pattern> <file> # 파일에서 읽을 때
<표준 출력을 출력하는 명령어> | grep <pattern> # 표준 출력에서 읽을 때

grep은 혼자 사용되기보다는 두 번째 예시처럼 한 명령어의 표준 출력을 다른 명령어의 표준 입력으로

pipe를 통해 이어주는 "|"(영어가 아닌 특수 문자이다. 역슬래시+shift)를 통해 다른 명령어와 함께 사용된다.

이에 대한 자세한 설명은 다음 포스팅에서 다룬다.

예시

grep example

linux man page 설명

grep searches the named input FILEs (or standard input if no files are named, or if a single hyphen-minus (-) is given as file name) for lines containing a match to the given PATTERN. By default, grep prints the matching lines.

 

(해석)

grep은 입력 파일(또는 표준 입력)에서 주어진 패턴과 일치하는 행들을 검색합니다.

기본적으로 일치하는 행들을 출력합니다. 

 

출처:

 

grep(1): print lines matching pattern - Linux man page

grep(1) - Linux man page Name grep, egrep, fgrep - print lines matching a pattern Synopsis grep [OPTIONS] PATTERN [FILE...] grep [OPTIONS] [-e PATTERN | -f FILE] [FILE...] Description grep searches the named input FILEs (or standard input if no files are n

linux.die.net

 

댓글