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

잔글 (로봇: 자동으로 텍스트 교체 (-<source lang='dos'> +<source lang='cli'>))
13번째 줄: 13번째 줄:


==실행 결과==
==실행 결과==
<source lang='dos'>
<source lang='cli'>
[root@jmnote ~]# sh test.sh  
[root@jmnote ~]# sh test.sh  
Warning: no arguments
Warning: no arguments
</source>
</source>
<source lang='dos'>
<source lang='cli'>
[root@jmnote ~]# sh test.sh asdf
[root@jmnote ~]# sh test.sh asdf
OK
OK

2015년 2월 6일 (금) 01:59 판

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 같이 보기

4 참고 자료

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