grep을 사용한 파일내용 찾기 정보
정규표현식 grep을 사용한 파일내용 찾기
본문
            
            
                        grep -e  search_word /home/ -R
                
                
                [이 게시물은 관리자님에 의해 2011-10-31 17:32:05 Linux에서 이동 됨]
                    
                        
                추천
                
0
                
    0
댓글 1개
                
                    -e 옵션 빼도 동일한 결과네요.
옵션 설명을 보면, 정규표현식 옵션 같은데...
-e PATTERN, --regexp=PATTERN
Use PATTERN as the pattern; useful to protect patterns beginning with -.
[root@oracle test]# grep -e [a-z] ./test -R
./test/test.txt:search_word
./test/test.txt:search-word
                    옵션 설명을 보면, 정규표현식 옵션 같은데...
-e PATTERN, --regexp=PATTERN
Use PATTERN as the pattern; useful to protect patterns beginning with -.
[root@oracle test]# grep -e [a-z] ./test -R
./test/test.txt:search_word
./test/test.txt:search-word
