사용하는 이유
텍스트(파일, 표준 출력 등)에서 일치하는 패턴(정규식)을 검색하기 위해.
기본 사용법
grep <pattern> <file> # 파일에서 읽을 때
<표준 출력을 출력하는 명령어> | grep <pattern> # 표준 출력에서 읽을 때
grep은 혼자 사용되기보다는 두 번째 예시처럼 한 명령어의 표준 출력을 다른 명령어의 표준 입력으로
pipe를 통해 이어주는 "|"(영어가 아닌 특수 문자이다. 역슬래시+shift)를 통해 다른 명령어와 함께 사용된다.
이에 대한 자세한 설명은 다음 포스팅에서 다룬다.
예시
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은 입력 파일(또는 표준 입력)에서 주어진 패턴과 일치하는 행들을 검색합니다.
기본적으로 일치하는 행들을 출력합니다.
출처:
'개발 > linux' 카테고리의 다른 글
package manager in linux (종류, 구조) (0) | 2022.10.22 |
---|---|
linux vi(vim) 사용법, 설명 (0) | 2022.10.21 |
linux stat 사용법, 설명 (0) | 2022.10.21 |
linux chown chmod (setuid, setgid, sticky bit, mode format) 사용법, 설명, 차이 (0) | 2022.10.21 |
linux mkdir 사용법, 설명 (0) | 2022.10.21 |
댓글