[shell] テストコマンドを書く

test -e auto_update.sh; echo $?

FILE="auto_update.sh"
if test -n "$FILE"; then
    echo "File is exist"
fi

$ sh test.sh
0
File is exist

インストール関連はシェルで書いて、テストもシェルで書くのね。なるほど、勉強になりますね。