"리눅스 $0"의 두 판 사이의 차이

27번째 줄: 27번째 줄:
*[[Bash 위치 파라미터]]
*[[Bash 위치 파라미터]]
*[[리눅스 $?]]
*[[리눅스 $?]]
*[[리눅스 $$, $_]]
*[[리눅스 $$]]
*[[리눅스 $_]]
*[[0]]
*[[0]]


[[분류: Bash]]
[[분류: Bash]]
[[분류: 변수]]
[[분류: 변수]]

2014년 12월 20일 (토) 10:59 판

1 개요

$0
  • 실행된 쉘 스크립트 경로파일명
  • 스크립트 자신의 파일명을 담은 bash 변수
[root@jmnote ~]# echo 'echo $0' > test.sh
[root@jmnote ~]# cat test.sh
echo $0
[root@jmnote ~]# sh test.sh
test.sh
[root@jmnote ~]# sh ./test.sh
./test.sh
[root@jmnote ~]# sh /root/test.sh
/root/test.sh
[root@jmnote ~]# sh ~/test.sh
/root/test.sh
[root@jmnote ~]# ./test.sh
-bash: ./test.sh: Permission denied
[root@jmnote ~]# chmod u+x test.sh
[root@jmnote ~]# ./test.sh
./test.sh

2 같이 보기

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