1. 방법 1: type
리눅스 type 문서를 참고,
[root@localhost ~]# type ifconfig
ifconfig is /sbin/ifconfig
Code language: PHP (php)
[root@localhost ~]# type cd
cd is a shell builtin
Code language: CSS (css)
[root@localhost ~]# type which
which is aliased to `alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'
Code language: PHP (php)
2. 방법 2: witch
리눅스 witch 문서 참고,
[root@localhost ~]# which ifconfig
/sbin/ifconfig
Code language: PHP (php)
[root@localhost ~]# which httpd
/usr/sbin/httpd
Code language: PHP (php)
ifconfig는 /sbin에, httpd는 /usr/sbin에 설치되어 있다.
3. 방법 3: whereis
[root@localhost ~]# whereis ifconfig
ifconfig: /sbin/ifconfig /usr/share/man/man8/ifconfig.8.gz
Code language: PHP (php)
[root@localhost ~]# whereis httpd
httpd: /usr/sbin/httpd /usr/sbin/httpd.worker /usr/sbin/httpd.event /etc/httpd /usr/lib64/httpd /usr/include/httpd /usr/share/man/man1/httpd.1.gz /usr/share/man/man8/httpd.8.gz
Code language: PHP (php)
4. 방법 4: find
- 실제 명령어가 아닌 다른 파일을 찾게 될 수도 있다.
- 모든 폴더를 다 찾아보기 때문에 위 방법들에 비해 오래 걸린다.
[root@localhost ~]# find / -name ifconfig
/sbin/ifconfig
Code language: PHP (php)
참고
http://en.wikipedia.org/wiki/Which_(Unix)
http://en.wikipedia.org/wiki/Whereis