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

25번째 줄: 25번째 줄:
OK
OK
</source>
</source>
==같이 보기==
*[[Bash getopt 예제]]
*[[전달인자]]


==참고 자료==
==참고 자료==

2014년 4월 20일 (일) 10:32 판

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 }}