내 grunt 패키지의 위치를 찾으려고 하는데 다음을 실행하면:
where grunt
다음과 같은 오류 메시지가 나타납니다.
No command 'where' found, did you mean:
Command 'gwhere' from package 'gwhere' (universe)
where: command not found
올바른 명령/구문은 무엇입니까?
답변1
grunt
.Run 에 대한 정보를 찾고 계시다면
whereis grunt
또는
whatis grunt
또는
which grunt
답변2
그렇지는 where
않지만 which
. 그래서
which grunt
바이너리의 위치를 알려줄 것입니다.
답변3
바이너리 패키지를 찾는 명령은 이고 which
, 바이너리 및 수동 패키지를 찾는 명령은 입니다 whereis
. 그래서 which ls
줄 것이다
/bin/ls
그리고 whereis ls
줄 것이다
ls: /bin/ls /usr/share/man/man1/ls.1.gz
여기서 첫 번째 인수 /bin/ls
는 바이너리 파일이고 /usr/share/man/man1/ls.1.gz
매뉴얼 페이지입니다.