[Shell] Parameter 개수 체크하는 방법

2021. 5. 4. 18:15 OS/Linux

shell script를 작성할때 parameter의 개수를 체크하는 방법입니다.

 

if [ "$#" -ne 1 ]; then
    echo 'all'
else
    VERSION=$1
    echo "$VERSION"
fi