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

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

1 예시 1: 1개 이상이면 OK[ | ]

#!/bin/bash
if [ $# -eq 0 ] ; then
    echo "Warning: no arguments"
    exit 0
fi
echo "OK"
실행예시
[root@zetawiki ~]# sh test.sh 
Warning: no arguments
[root@zetawiki ~]# sh test.sh asdf
OK
[root@zetawiki ~]# sh test.sh 1
OK
[root@zetawiki ~]# sh test.sh 1 2
OK

2 예시 2: 1개만 OK[ | ]

#!/bin/bash
if [ $# -ne 1 ] ; then
    echo "Usage: greet.sh John"
    exit 0
fi
echo OK
echo Hello, $1.
실행예시
root@zetawiki:~# sh greet.sh 
Usage: greet.sh John
root@zetawiki:~# sh greet.sh John Smith
Usage: greet.sh John
root@zetawiki:~# sh greet.sh John
OK
Hello, John.
root@zetawiki:~# sh greet.sh "John Smith"
OK
Hello, John Smith.

3 같이 보기[ | ]

4 참고[ | ]

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