"Bash 빌트인 명령어"의 두 판 사이의 차이

22번째 줄: 22번째 줄:


==목록==
==목록==
{| class='wikitable'
{{z컬럼3|
|-
* [[alias]]
| [[alias]] || [[echo]] || [[kill]] || [[shopt]]
* [[bg]]
|-
* [[bind]]
| [[bg]] || [[enable]] || [[let]] || [[source]]
* [[break]]
|-
* [[builtin]]
| [[bind]] || [[eval]] || [[local]] || [[suspend]]
* [[cd]]
|-
* [[compgen]]
| [[break]] || [[exec]] || [[logout]] || [[test]]
* [[command]]
|-
* [[complete]]
| [[builtin]] || [[exit]] || [[popd]] || [[times]]
* [[continue]]
|-
* [[dirs]]
| [[cd]] || [[export]] || [[printf]] || [[trap]]
* [[declare]]
|-
* [[echo]]
| [[command]] || [[fc]] || [[pushd]] || [[type]]
* [[eval]]
|-
* [[exec]]
| [[compgen]] || [[fg]] || [[pwd]] || [[typeset]]
* [[exit]]
|-
* [[enable]]
| [[complete]] || [[getopts]] || [[리눅스 read|read]] || [[ulimit]]
* [[export]]
|-
* [[fc]]
| [[continue]] || [[hash]] || [[readonly]] || [[umask]]
* [[fg]]
|-
* [[getopts]]
| [[declare]] || [[리눅스 help|help]] || [[return]] || [[unalias]]
* [[hash]]
|-
* [[리눅스 help|help]]
| [[dirs]] || [[history]] || [[set]] || [[unset]]
* [[history]]
|}
* [[kill]]
* [[let]]
* [[local]]
* [[logout]]
* [[pwd]]
* [[popd]]
* [[pushd]]
* [[printf]]
* [[리눅스 read|read]]
* [[return]]
* [[readonly]]
* [[set]]
* [[shopt]]
* [[source]]
* [[suspend]]
* [[type]]
* [[test]]
* [[trap]]
* [[times]]
* [[typeset]]
* [[umask]]
* [[unset]]
* [[ulimit]]
* [[unalias]]
}}


==같이 보기==
==같이 보기==

2019년 4월 15일 (월) 00:33 판

1 개요

bash builtin commands; BASH_BUILTINS, builtin shell commands
Bash 빌트인 명령어, Bash 내장 명령어, Bash 빌트인, 배시 빌트인, 배쉬 내장 명령어, 빌트인 쉘 명령어, 내장 쉘 명령어
  • Bash에 내장된 명령어
  • bash 쉘 자체적으로 지원하는 명령어이므로, 실행파일이 따로 없는 경우가 많다.
예외 리눅스 echo
[root@zetawiki ~]# type alias
alias is a shell builtin
[root@zetawiki ~]# which alias
/usr/bin/which: no alias in (/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin)
[root@zetawiki ~]# type echo
echo is a shell builtin
[root@zetawiki ~]# which echo
/bin/echo
→ alias 명령어는 실행파일이 따로 없음[1]. (빌트인 명령어)
→ echo 명령어는 실행파일이 있음

2 목록

3 같이 보기

4 참고

  1. /usr/share/man/man1/alias.1.gz 는 매뉴얼 파일임
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}