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

잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
6번째 줄: 6번째 줄:
* [[Bash 빌트인 명령어]] 중 하나
* [[Bash 빌트인 명령어]] 중 하나


<syntaxhighlight lang='console'>
root@zetawiki:~# type command
command is a shell builtin
</syntaxhighlight>
<syntaxhighlight lang='console'>
<syntaxhighlight lang='console'>
root@zetawiki:~# ls /var
root@zetawiki:~# ls /var

2022년 3월 7일 (월) 02:22 판

  다른 뜻에 대해서는 Command 패턴 문서를 참조하십시오.
  다른 뜻에 대해서는 명령어 문서를 참조하십시오.

1 개요

리눅스 command
root@zetawiki:~# type command
command is a shell builtin
root@zetawiki:~# ls /var
backups  crash  local  log   opt  spool  www
cache    lib    lock   mail  run  tmp
root@zetawiki:~# command ls /var
backups  crash	local  log   opt  spool  www
cache	 lib	lock   mail  run  tmp
root@zetawiki:~# l /var
backups/  crash/  local/  log/   opt/  spool/  www/
cache/    lib/    lock@   mail/  run@  tmp/
root@zetawiki:~# command l /var
l: command not found
root@zetawiki:~# type ls
ls is aliased to `ls --color=auto'
root@zetawiki:~# which ls
/bin/ls
root@zetawiki:~# type l
l is aliased to `ls -CF'
root@zetawiki:~# which l
root@zetawiki:~#

2 같이 보기

3 참고

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