728x90 Research/Linux101 find로 특정 확장자 여러개 찾는 방법 예를 들어 확장자가 *.cpp, *c, *h 인 파일을 찾는다고 하면 find . -name *.cpp -o -name *.c -o -name *.h 2008. 10. 2. grep & find 출처: http://cafe.naver.com/linuxcare/14347 1.grep 명령어 1.1 grep의 의미 grep : 파일 전체를 뒤져 정규표현식에 대응하는 모든 행들을 출력한다. egrep : grep의 확장판으로, 추가 정규표현식 메타문자들을 지원한다. fgrep : fixed grep 이나 fast grep으로 불리며, 모든 문자를 문자 그래도 취급한다. 즉, 정 규표현식의 메타문자도 일반 문자로 취급한다. 1.2 grep의 동작 방법 grep에서 사용하는 정규표현식 메타문자 메타문자 기 능 사용 예 사용 예 설명 ^ 행의 시작 지시자 '^love' love로 시작하는 모든 행과 대응 $ 행의 끝 지시자 'love$' love로 끝나는 모든 행과 대응 . 하나의 문자와 대응 'l..e'.. 2008. 10. 2. Gnome Terminal의 기본 크기 변경 gnome-terminal --geometry 가로x세로+가로위치+세로위치 바로가기 속성을 변경 2008. 10. 2. Find files that contain a text string: Find files that contain a text string: 1 grep -lir "some text" * The -l switch outputs only the names of files in which the text occurs (instead of each line containing the text), the -i switch ignores the case, and the -r descends into subdirectories. to bash shell grep by Carlo on Mon Jul 25 19:36:11 -0400 2005 2008. 9. 30. 이전 1 ··· 19 20 21 22 23 24 25 26 다음 728x90