- /usr 디렉터리에서 rdate 파일 찾기

[root@localhost ~]# find /usr -name "rdate"


- /usr 디렉터리에서 rd로 시작하는 파일 찾기

[root@localhost ~]# find /usr -name "rd*"


- /usr 디렉터리에서 첫 번째 글자가 r 또는 a 로 시작, 두 번째 글자가 c 또는 d로 시작하는 모든 파일 찾기

[root@localhost ~]# find /usr -name "[a,r][c,d]*"


- /usr 디렉터리에서 첫 번째 글자가 a 또는 b로 시작하는 4개의 문자로 구성된 파일 찾기

[root@localhost ~]# find /usr -name "[a,b]???"


- /root 디렉터리에서 일반 파일만 찾기

[root@localhost ~]# find /root -type f


- 최상위 디렉터리에서 심볼릭 링크 찾기

[root@localhost ~]# find /-type l

 

 

+ Recent posts