>  기사  >  운영 및 유지보수  >  Linux 명령 튜토리얼: 비교 검색 명령 whereis와 차이점

Linux 명령 튜토리얼: 비교 검색 명령 whereis와 차이점

巴扎黑
巴扎黑원래의
2017-09-08 10:46:302047검색

이 글에서는 주로 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

세 개의 PATH 환경 변수


시스템 검색 명령의 경로를 정의


[root@localhost ~]# echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin

위 내용은 Linux 명령 튜토리얼: 비교 검색 명령 whereis와 차이점의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.