터미널에서 파일 찾기1. find 명령어 (강력한 검색 기능)파일 이름, 수정 시간, 크기 등을 기준으로 검색find /path/to/search -name "filename"예제find . -name "test.txt"2. locate 명령어 (빠른 검색)미리 색인된 데이터베이스에서 검색하기 때문에 매우 빠르다설치 방법sudo apt install mlocatesudo updatedb사용법locate test.txt3. fd 명령어 (빠르고 직관적)find보다 더 빠르고 사용하기 쉬운 대체 도구.설치 방법sudo apt install fd-find사용법fd test.txt4. grep을 활용한 검색 (파일 내용 찾기)파일 이름이 아니라 파일 내용을 검색할 때 유용grep -r "keyword" /pat..