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

3번째 줄: 3번째 줄:
*실행된 쉘 스크립트 경로파일명
*실행된 쉘 스크립트 경로파일명
*스크립트 자신의 파일명을 담은 bash 변수
*스크립트 자신의 파일명을 담은 bash 변수
<source lang='cli'>
[root@jmnote ~]# echo $0
-bash
</source>
<source lang='cli'>
<source lang='cli'>
[root@jmnote ~]# echo 'echo $0' > test.sh
[root@jmnote ~]# echo 'echo $0' > test.sh

2014년 12월 20일 (토) 11:03 판

1 개요

$0
  • 실행된 쉘 스크립트 경로파일명
  • 스크립트 자신의 파일명을 담은 bash 변수
[root@jmnote ~]# echo $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 }}