'prune'에 해당되는 글 1건
- 2014.06.24 :: find 특정 디렉토리를 검색조건에서 제외
OS/Linux
2014. 6. 24. 19:13
find를 이용해 특정 경로의 파일을 찾고자 할때, 특정 디렉토리를 검색대상에서 제외 시킬 수 있다.
전체 파일시스템에서 /etc 디렉토리를 제외하고 "*.conf" 파일을 찾으려면 다음과 같이 한다.
$ find / ! \( -path /etc -prune \) -name "*.conf"
/etc 디렉토리와 /var 디렉토리를 제외하려면??
$ find / ! \( \( -path /etc -o -path /var \) -prune \) -name "*.conf"
'OS > Linux' 카테고리의 다른 글
vimrc 설정 (0) | 2014.07.07 |
---|---|
mysql error 2006 (0) | 2014.07.07 |
sudo: unable to resolve host (0) | 2014.06.19 |
createrepo 갱신 (0) | 2014.06.17 |
kernel.shmmax (0) | 2014.06.17 |