ctrl-shift-f 로 디렉토리 검색하거나 하는 것과 유사하게
grep을 이용하는데
주로 사용하는 옵션은 rni이다.
grep -rniI "검색어" "검색시작 경로"
의 양식으로 사용하며
예를 들어 현재 위치 아래로 test_str 이라는 것을 검색하려면
grep -rniI test_str ./
라고 하면된다.
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 ./
라고 하면된다.
'Linux' 카테고리의 다른 글
start-stop-daemon - start and stop system daemon programs (0) | 2009.07.31 |
---|---|
Fedora Core 6 - ACPI shutdown error (0) | 2009.07.23 |
raw mode telnet / raw telnet mode (0) | 2009.07.15 |
Fedora / Gnome 시스템의 실행 프로그램 목록 (0) | 2009.07.01 |
*** glibc detected *** : corrupted double-linked list: *** (0) | 2009.06.29 |