목차

grep

특정 파일명에서 문자열 찾기

# 현재 디렉토리 파일 한정
grep <pattern> <file>
# 하위 디렉토리를 포함하려면 -r --include=GLOB 을 사용
# grep -r --include=GLOB "pattern" /path/to/dir
grep -r --include="*.txt" "pattern" /path/to/dir
grep -r --include="*.txt" "foo" ~/projects/
 
# 모든 파일 검색하고 줄번호도 함께 출력
grep -rn "pattern" /path/to/dir/*
 
# * 가 없으면 /path/to/dir/그하위dir들 에 있는 파일만 검색한다.
# /path/to/dir/ 바로 아래의 파일은 탐색하지 않는다.
grep -rn "pattern" /path/to/dir/
 
# -R 은 -r 과 같으나 모든 심볼릭 링크를 따라간다.
find . -name "*.java" | xargs grep "Some code to find"
#!/bin/sh
# findtext "검색어" "파일명"
find . -name "$2" | xargs grep -Hni "$1"

매칭되는 줄 위아래 보여주기

정규표현식 / Regex/ Pattern 옵션

여러 단어 검색

grep 'word1\|word2\|word3' /path/to/file
### Search all text files ###
grep 'word*' *.txt
### Search all python files for 'wordA' or 'wordB' ###
grep 'wordA*'\''wordB' *.py
grep -E 'word1|word2' *.doc
grep -e string1 -e string2 *.pl
egrep "word1|word2" *.c

기타 옵션

grep 대체