명령어의 위치를 알고 싶다면 which를 사용할 수 있다.
단점은 path에서 처음 발견된 which에 관한 위치만 나온다는 점이다.
이를 보완하고 싶을 경우 -a 옵션을 주면 해당하는 모든 위치가 나온다.
~/test/shPractice which grep
grep: aliased to grep --color=auto --exclude-dir={.bzr,CVS,.git,.hg,.svn}
~/test/shPractice which -a grep
grep: aliased to grep --color=auto --exclude-dir={.bzr,CVS,.git,.hg,.svn}
/usr/bin/grep
whereis는 명령어의 실행파일위치, 소스위치, man 페이지파일의 위치를 찾아주는 명령어라고 한다. (출처: http://webdir.tistory.com/158)
'배운 것' 카테고리의 다른 글
perl로 날짜 비교 하기 (0) | 2016.03.28 |
---|---|
holder pattern in java (0) | 2016.03.15 |
[linux command] mkdir -p -m (0) | 2016.03.04 |
[linux command] cut (0) | 2016.03.04 |
git 명령어 alias 를 이용해서 짧게 쓰기 (0) | 2016.03.03 |