주 메뉴 열기

wwiki β

바뀜

Bash

55 바이트 추가됨, 2019년 3월 24일 (일) 16:13
if
===if===
<syntaxhighlight lang="bash">
if [ -z "$1" ] && [ -z "$2" ]
then
somecode1
elif [ "$1" = "run" ]; then
somecode
else
somecode2
fi
</syntaxhighlight>
==단축키==
편집
2,431