Linux - 08. 확장 명령(grep, find)
jennysgap
확장 명령 1) grep : General Regular Expression Print 명령줄 상에서 텍스트 들어있는 특정 패턴을 출력해주는 명령 [사용법] # grep [-options] 'Pattern' text_file [text2]# grep root /etc/group# grep ROOT /etc/group# grep -i ROOT /etc/group : -i (ignore case) 대소문자의 구별을 없앰.# grep -n root /etc/group : -n (line Number) 출력되는 내용에 라인번호 추가# grep the test.txt# grep -w the test.txt : -w (word) 단어로 검색 * Regular Expression(RE) ----------------..