start to STAR
2012年7月22日 星期日
Bash Script - If...Else
read -p "Please enter your option:" option
if [ "$option" == "1" ]; then
echo "test 1"
elif [ "$option" == "2" ]; then
echo "test 2"
elif [ "$option" == "3" ]; then
echo "test 3"
else
echo "Please enter correct option!"
fi
較新的文章
首頁