'xdev'에 해당되는 글 1건

  1. 2014.05.08 :: find - xdev
OS/Linux 2014. 5. 8. 12:19


xdev 사용하면 다른 파일시스템의 디렉토리를 검색하지 않는다.

정확한 내용인지는 모르겠지만, find 조건에 /를 지정하고 검색하게 되면 다음과 같이 proc 파일시스템에서 검색하다가 찾지 못했다는 메세지를 뿌린다.

/proc/17593/task/17593/fd/5': No such file or directory

하지만, -xdev 옵션을 넣게 되면 이러한 메세지가 사라진다.

find / -xdev -name "*.log"

-xdev 옵션의 위치에 따라 다음과 같은 메세지가 나올 수 있다.

# find / -name "*.log" -xdev

find: warning: you have specified the -xdev option after a non-option argument -name, but options are not positional (-xdev affects tests specified before it as well as those specified after it).  Please specify options before other arguments.

테스트 해본 결과 -xdev 옵션은 찾을 경로 다음에 위치해야 한다.


posted by 구닥다리 엔지니어
: