이 글에서는 주로 Linux 명령 검색 명령 whereis와 which의 차이점에 대한 관련 정보를 소개합니다. 다음은 사용법을 구별하는 방법에 대한 예입니다.
Linux 명령 검색 명령 whereis의 차이점을 참조하세요. and which
一whereis
1. 구문
whereis 명령 이름
검색 명령이 있는 경로와 도움말 문서의 위치
옵션:
- b: 실행 파일만 검색 File
-m: 도움말 파일만 검색
2. 실제 전투
[root@localhost ~]# whereis ls ls:/usr/bin/ls /usr/share/man/man1/ls.1.gz/usr/share/man/man1p/ls.1p.gz [root@localhost ~]# whoami root [root@localhost ~]# whatis whatis what? [root@localhost ~]# whatis ls ls (1)- list directory contents ls (1p)- list directory contents [root@localhost ~]# whereis -b ls ls:/usr/bin/ls [root@localhost ~]# whereis -m ls ls:/usr/share/man/man1/ls.1.gz/usr/share/man/man1p/ls.1p.gz
two which
구문
1.
검색 명령 경로 및 별칭
2. 실제 전투
[root@localhost ~]# which ls alias ls='ls --color=auto' /usr/bin/ls [root@localhost ~]# which pwd /usr/bin/pwd [root@localhost ~]# whereis cd cd:/usr/bin/cd /usr/share/man/man1/cd.1.gz/usr/share/man/man1p/cd.1p.gz [root@localhost ~]# which cd /usr/bin/cd
시스템 검색 명령의 경로를 정의
[root@localhost ~]# echo $PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin
위 내용은 Linux 명령 튜토리얼: 비교 검색 명령 whereis와 차이점의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!