from palette import colorful_colors

[Linux] 리눅스 명령어 모음(2) (feat. ubuntu) 본문

Embedded, 제어/Linux(ubuntu)

[Linux] 리눅스 명령어 모음(2) (feat. ubuntu)

colorful-palette 2023. 3. 22. 23:51

(계속해서 추가 예정)

Find: 파일 및 디렉토리 검색

find (경로) (-name) (파일 혹은 디렉토리 명) (-type d 혹은 -type f)

 
예시1) /dev에서 이름이 video0인 파일 혹은 디렉토리 검색

find /dev/ -name video0

 
예시2) 홈 디렉토리에서 이름이 catkin_ws고 디렉토리만 검색

find ~/ -name catkin_ws -type d

 
예시3) 루트(최상위)에서 이름이 test.txt이고 타입이 파일인 것만 검색

find / -name test.txt -type f

 
 
 
 
 
 
 
 
 
 
 
 
 
 
reference:
https://araikuma.tistory.com/114