Contents

Views 30621 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
만약 특정 디렉토리 이하에서 network 라는 문자열을 포함한 파일을 찾고싶다면.. 해당 디렉토리에서 모든 파일을 읽어 찾아보아야 하나.. 다음과 같이 find 와 grep 를 파이프로 연결하여 사용하면 쉽게 찾을 수있다. 

# /etc/ 디렉토리 하위에서 'network' 문자열이 포함된 파일 찾기
find /etc/ -type f -exec grep 'network' {} /dev/null \;

# /etc/ 디렉토리 하위의 파일명 '*.conf' 중에서 'network' 문자열이 포함된 파일 찾기
find /etc/ -name '*.conf' -type f -exec grep 'network' {} /dev/null \;


위와 같이 명령어를 타입하면 /etc/ 디렉토리 이하에서 network 라는 문자열을 포함한 모든 파일명과 위치를 listing 해 준다. 


그리고 단순히 특정 단어를 포함한 파일명을 찾고 싶으면 locste 라는 것을 쓰면 된다.
즉, locate ftp 를 하면 ftp 라는 파일명이 포함된 파일들을 listing 해 준다.


?

List of Articles
No. Category Subject Author Date Views
23 System/OS 서버 확장을 위한 두 가지 방법 file hooni 2018.08.29 2109
22 Etc [svn] 콘솔에서 svn 사용시 레티나용 이미지 add 안될 때.. hooni 2013.09.25 37503
21 System/OS [sql] insert into select 사용하기 hooni 2013.04.23 27556
20 Develop [node.js] nodejs 기본 설치 hooni 2013.04.23 26256
19 Develop [matlab] 정보은닉 스테가노그래피(Steganography) 수업 file hooni 2016.10.03 688
18 Develop [matlab] ZigZag-Scanning (2-D Array) file hooni 2016.10.15 1996
» System/OS [linux] 특정 문자열 포함된 파일 찾는 명령어 hooni 2013.10.16 30621
16 System/OS [linux] 리눅스,유닉스 /proc/stat 파일 보는 법 hooni 2013.04.23 17931
15 System/OS [linux] 리눅스, 유닉스 CPU 이용률 확인.. hooni 2013.04.23 23783
14 System/OS [linux] 리눅스 파일시스템과 디렉토리 설명 hooni 2013.04.23 26878
13 Develop [java] 입출력 스트림 3부 (오브젝트) hooni 2013.04.23 17143
12 Develop [java] 입출력 스트림 1부 (문자) file hooni 2013.04.23 15300
Board Pagination Prev 1 2 Next
/ 2