"Bash 스크립트 인수 있는지 검사"의 두 판 사이의 차이

6번째 줄: 6번째 줄:
#!/bin/bash
#!/bin/bash
if [ $# -eq 0 ] ; then
if [ $# -eq 0 ] ; then
     echo "warning: no arguments"
     echo "Warning: no arguments"
     exit 0
     exit 0
fi
fi
15번째 줄: 15번째 줄:
<source lang='dos'>
<source lang='dos'>
[root@jmnote ~]# sh test.sh  
[root@jmnote ~]# sh test.sh  
warning: no arguments
Warning: no arguments
</source>
</source>
<source lang='dos'>
<source lang='dos'>

2013년 6월 28일 (금) 13:37 판

Bash no arguments warning
Bash 스크립트 인수 있는지 확인

1 테스트 소스

#!/bin/bash
if [ $# -eq 0 ] ; then
    echo "Warning: no arguments"
    exit 0
fi
echo "OK"

2 실행 결과

[root@jmnote ~]# sh test.sh 
Warning: no arguments
[root@jmnote ~]# sh test.sh asdf
OK
[root@jmnote ~]# sh test.sh 1
OK
[root@jmnote ~]# sh test.sh 1 2
OK

3 참고 자료

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