리눅스

리눅스 grep 명령어 다양한 옵션 사용하기

Soyeon0111 2021. 12. 5. 01:18
반응형

정말 많이 사용하는 명령어 grep 

파일의 특정 문자를 찾을 때 사용하고 있다. 

grep에 정말 많은 옵션들이 있는데 알아두면 좋을 자주 사용할만한 옵션을 정리하려고 한다.  

 

1. grep 명령어에 help를 쳐보았다.

[root@localhost ~]# grep --help
Usage: grep [OPTION]... PATTERN [FILE]...
Search for PATTERN in each FILE or standard input.
PATTERN is, by default, a basic regular expression (BRE).
Example: grep -i 'hello world' menu.h main.c

Regexp selection and interpretation:
  -E, --extended-regexp     PATTERN is an extended regular expression (ERE)
  -F, --fixed-strings       PATTERN is a set of newline-separated fixed strings
  -G, --basic-regexp        PATTERN is a basic regular expression (BRE)
  -P, --perl-regexp         PATTERN is a Perl regular expression
  -e, --regexp=PATTERN      use PATTERN for matching
  -f, --file=FILE           obtain PATTERN from FILE
  -i, --ignore-case         ignore case distinctions
  -w, --word-regexp         force PATTERN to match only whole words
  -x, --line-regexp         force PATTERN to match only whole lines
  -z, --null-data           a data line ends in 0 byte, not newline

Miscellaneous:
  -s, --no-messages         suppress error messages
  -v, --invert-match        select non-matching lines
  -V, --version             display version information and exit
      --help                display this help text and exit

Output control:
  -m, --max-count=NUM       stop after NUM matches
  -b, --byte-offset         print the byte offset with output lines
  -n, --line-number         print line number with output lines
      --line-buffered       flush output on every line
  -H, --with-filename       print the file name for each match
  -h, --no-filename         suppress the file name prefix on output
      --label=LABEL         use LABEL as the standard input file name prefix
  -o, --only-matching       show only the part of a line matching PATTERN
  -q, --quiet, --silent     suppress all normal output
      --binary-files=TYPE   assume that binary files are TYPE;
                            TYPE is 'binary', 'text', or 'without-match'
  -a, --text                equivalent to --binary-files=text
  -I                        equivalent to --binary-files=without-match
  -d, --directories=ACTION  how to handle directories;
                            ACTION is 'read', 'recurse', or 'skip'
  -D, --devices=ACTION      how to handle devices, FIFOs and sockets;
                            ACTION is 'read' or 'skip'
  -r, --recursive           like --directories=recurse
  -R, --dereference-recursive
                            likewise, but follow all symlinks
      --include=FILE_PATTERN
                            search only files that match FILE_PATTERN
      --exclude=FILE_PATTERN
                            skip files and directories matching FILE_PATTERN
      --exclude-from=FILE   skip files matching any file pattern from FILE
      --exclude-dir=PATTERN directories that match PATTERN will be skipped.
  -L, --files-without-match print only names of FILEs containing no match
  -l, --files-with-matches  print only names of FILEs containing matches
  -c, --count               print only a count of matching lines per FILE
  -T, --initial-tab         make tabs line up (if needed)
  -Z, --null                print 0 byte after FILE name

Context control:
  -B, --before-context=NUM  print NUM lines of leading context
  -A, --after-context=NUM   print NUM lines of trailing context
  -C, --context=NUM         print NUM lines of output context
  -NUM                      same as --context=NUM
      --group-separator=SEP use SEP as a group separator
      --no-group-separator  use empty string as a group separator
      --color[=WHEN],
      --colour[=WHEN]       use markers to highlight the matching strings;
                            WHEN is 'always', 'never', or 'auto'
  -U, --binary              do not strip CR characters at EOL (MSDOS/Windows)
  -u, --unix-byte-offsets   report offsets as if CRs were not there
                            (MSDOS/Windows)

'egrep' means 'grep -E'.  'fgrep' means 'grep -F'.
Direct invocation as either 'egrep' or 'fgrep' is deprecated.
When FILE is -, read standard input.  With no FILE, read . if a command-line
-r is given, - otherwise.  If fewer than two FILEs are given, assume -h.
Exit status is 0 if any line is selected, 1 otherwise;
if any error occurs and -q is not given, the exit status is 2.

Report bugs to: bug-grep@gnu.org
GNU Grep home page: <http://www.gnu.org/software/grep/>
General help using GNU software: <http://www.gnu.org/gethelp/>

 

 

2. 옵션 -i (--ignore-case)를 사용하여 대소문자 무시하여 찾기

[root@localhost test]# grep -i bts bts.txt

"BTS"라는 단어가 포함된 bts.txt를 생성하였다. 이 파일에는 "bts"라는 단어는 없다. 

-i 옵션을 사용하면 대소문자 구분없이 검색할 수 있다.

 

 

3. 옵션 -e (--regexp=PATTERN)를 사용하여 패턴으로 찾기 

[root@localhost test]# grep -e "A.*s" bts.txt

A로 시작하고 s로 끝나는 문자를 찾기 위해 -e 옵션을 사용했다. 

참고로 중간 패턴을 쌍따옴표로 묶어주었는데 공백이 없는 한 단어인 경우 묶어주지 않아도 동작한다. 중간 공백이 있다면 쌍따옴표로 묶어주자.

4. 옵션 -F (--fixed-strings) 를 사용하여 정규 표현식이 아닌 일반 문자열을 찾기 

[root@localhost test]# grep -F "A.*s" bts.txt

테스트를 위해 bts.txt 파일 마지막에 My Test : [A.*s] 라는 line을 추가하였다. 

-F 옵션을 사용하여 검색하면 Artists는 검색되지 않고 A.*s 라는 문자열을 찾는다. 정규표현식에서 사용되는 문자가 파일에 포함되는 경우 사용하면 좋다.

 

5. 옵션 -v (--invert-match)를 사용하여 패턴이 매칭되지 않는 라인 찾기

[root@localhost test]# grep -v BTS bts.txt

문자열이 매칭되는 라인이 아니라 매칭되지 않는 라인을 출력할 때 사용하는 옵션 -v 

BTS가 포함되지 않은 두 줄이 출력되었다.

 

 

5. 그 외

  • 출력 결과가 너무 많은 경우 -m 옵션을 사용하여 검색 결과를 제한할 수 있다. 예시의 경우 두 줄만 출력되도록 했다. (앞쪽부터 두 줄이 출력됨)
  • -n 옵션을 사용하여 검색 결과에 line number를 표시할 수 있다.

반응형