Linux2009. 7. 21. 14:19
ctrl-shift-f 로 디렉토리 검색하거나 하는 것과 유사하게
grep을 이용하는데
주로 사용하는 옵션은 rni이다.

NAME
       grep, egrep, fgrep - print lines matching a pattern

SYNOPSIS
       grep [options] PATTERN [FILE...]
       grep [options] [-e PATTERN | -f FILE] [FILE...]

       -I     Process  a  binary  file as if it did not contain matching data;
                this is equivalent to the --binary-files=without-match option.

       -i, --ignore-case
              Ignore case distinctions in both the PATTERN and the input files.

       -n, --line-number
              Prefix each line of output with the line number within its input file.

       -R, -r, --recursive
              Read all files under each directory, recursively; this is equivalent to the -d recurse option.

grep -rniI "검색어" "검색시작 경로"

의 양식으로 사용하며
예를 들어 현재 위치 아래로 test_str 이라는 것을 검색하려면

grep -rniI test_str ./

라고 하면된다.
Posted by 구차니