Bash 스크립트 인수 있는지 검사

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