where

English[weə(r)] US[wer]

adv.where, where to where; 특정 상황이나 위치

conj.in the place of...

n.place, place

pron.Where

복수형: wheres

리눅스 whereis 명령 통사론

기능: whereis 명령은 파일을 찾는 데 사용됩니다.

구문: ​​whereis [-bfmsu][-B <디렉터리>...][-M <디렉터리>...][-S <디렉터리>...][file..]

리눅스 whereis 명령 예

"whereis" 명령을 사용하여 "bash" 명령의 위치를 ​​확인하고 다음 명령을 입력합니다.

$ whereis bash

위 명령이 실행된 후 출력 정보는 다음과 같습니다.

bash:/bin/bash/etc/bash.bashrc/usr/share/man/man1/bash.1.gz

참고: 위 출력 정보는 다음과 같습니다. 쿼리된 프로그램은 왼쪽에서 오른쪽으로 이름, bash 경로, bash 매뉴얼 페이지 경로입니다.

사용자가 바이너리 파일이나 도움말 파일을 별도로 쿼리해야 하는 경우 다음 명령을 사용할 수 있습니다.

$ whereis -b bash 
$ whereis -m bash

출력 정보는 다음과 같습니다.

$ whereis -b bash               #显示bash 命令的二进制程序  
bash: /bin/bash /etc/bash.bashrc /usr/share/bash    # bash命令的二进制程序的地址  
$ whereis -m bash               #显示bash 命令的帮助文件  
bash: /usr/share/man/man1/bash.1.gz  #bash命令的帮助文件地址