"리눅스 type"의 두 판 사이의 차이

(새 문서: ==개요== ;리눅스 type ==실행예시== <source lang='dos'> [root@jmnote ~]# type bash bash is /bin/bash </source> <source lang='dos'> [root@jmnote ~]# type httpd httpd is /usr/s...)
 
1번째 줄: 1번째 줄:
==개요==
==개요==
;리눅스 type
;리눅스 type
*리눅스 명령어 정보 확인
*파일위치, bash 빌트인 명령어 여부, alias 등의 정보를 확인할 수 있음


==실행예시==
==실행예시==

2014년 3월 19일 (수) 10:06 판

1 개요

리눅스 type
  • 리눅스 명령어 정보 확인
  • 파일위치, bash 빌트인 명령어 여부, alias 등의 정보를 확인할 수 있음

2 실행예시

[root@jmnote ~]# type bash
bash is /bin/bash
[root@jmnote ~]# type httpd
httpd is /usr/sbin/httpd
쉘 빌트인
[root@jmnote ~]# type type
type is a shell builtin
alias
[root@jmnote ~]# type ls
ls is aliased to `ls --color=auto'
hashed
[root@jmnote ~]# type man
man is hashed (/usr/bin/man)

3 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}