집 >운영 및 유지보수 >리눅스 운영 및 유지 관리 >Linux에서 find 명령을 사용하는 방법
Linux find 명령의 사용법은 다음과 같습니다. 1. 현재 경로에서 "hello.txt"라는 파일을 찾으려면 "find ./ -name the full file name"이라는 사용법을 사용합니다. 루트 디렉터리 파일의 "hello.txt" 사용법은 "find ./ -name 파일 이름 | xargs rm"입니다. 3. "hello.txt"라는 파일을 찾아 삭제하려면 "find ./ - 이름 파일 이름 | xargs rm".
find 명령의 사용법과 매개변수에 대해 자세히 알아보세요.
준비 조건:
Centos7.9 운영 체제가 있는 서버;
Xshell 터미널이 서버에 연결되었습니다.
1. 현재 경로에서 "hello.txt"라는 파일을 찾으세요. ./ -name 전체 파일 이름
예: find ./ -name hello.txt
hello라는 파일에 대한 일괄 검색:
find ./ -name hel*
"*"은 퍼지 일치입니다.
2. 루트 디렉터리에서 "hello.txt"라는 파일을 찾습니다.
사용법: find / -name 전체 파일 이름
예: find / -name hello.txt
3. "hello.txt"라는 파일을 찾아 삭제합니다.
사용법: find ./ -name file name|xargs rm
예: find ./ -name hello.txt|xargs rm
위 내용은 Linux에서 find 명령을 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!