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

잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
(다른 사용자 한 명의 중간 판 하나는 보이지 않습니다)
3번째 줄: 3번째 줄:


==예시 1: 1개 이상이면 OK==
==예시 1: 1개 이상이면 OK==
<source lang='bash'>
<syntaxhighlight lang='bash'>
#!/bin/bash
#!/bin/bash
if [ $# -eq 0 ] ; then
if [ $# -eq 0 ] ; then
10번째 줄: 10번째 줄:
fi
fi
echo "OK"
echo "OK"
</source>
</syntaxhighlight>


{{소스헤더|실행예시}}
{{소스헤더|실행예시}}
<source lang='console'>
<syntaxhighlight lang='console'>
[root@zetawiki ~]# sh test.sh  
[root@zetawiki ~]# sh test.sh  
Warning: no arguments
Warning: no arguments
</source>
</syntaxhighlight>
<source lang='console'>
<syntaxhighlight lang='console'>
[root@zetawiki ~]# sh test.sh asdf
[root@zetawiki ~]# sh test.sh asdf
OK
OK
24번째 줄: 24번째 줄:
[root@zetawiki ~]# sh test.sh 1 2
[root@zetawiki ~]# sh test.sh 1 2
OK
OK
</source>
</syntaxhighlight>


==예시 2: 1개만 OK==
==예시 2: 1개만 OK==
<source lang='bash'>
<syntaxhighlight lang='bash'>
#!/bin/bash
#!/bin/bash
if [ $# -ne 1 ] ; then
if [ $# -ne 1 ] ; then
35번째 줄: 35번째 줄:
echo OK
echo OK
echo Hello, $1.
echo Hello, $1.
</source>
</syntaxhighlight>


{{소스헤더|실행예시}}
{{소스헤더|실행예시}}
<source lang='console'>
<syntaxhighlight lang='console'>
root@zetawiki:~# sh greet.sh  
root@zetawiki:~# sh greet.sh  
Usage: greet.sh John
Usage: greet.sh John
</syntaxhighlight>
<syntaxhighlight lang='console'>
root@zetawiki:~# sh greet.sh John Smith
root@zetawiki:~# sh greet.sh John Smith
Usage: greet.sh John
Usage: greet.sh John
</syntaxhighlight>
<syntaxhighlight lang='console'>
root@zetawiki:~# sh greet.sh John
root@zetawiki:~# sh greet.sh John
OK
OK
Hello, John.
Hello, John.
</syntaxhighlight>
<syntaxhighlight lang='console'>
root@zetawiki:~# sh greet.sh "John Smith"
root@zetawiki:~# sh greet.sh "John Smith"
OK
OK
Hello, John Smith.
Hello, John Smith.
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2020년 11월 2일 (월) 02:39 기준 최신판

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