码迷,mamicode.com
首页 > 系统相关 > 详细

linux学习之shell script(二)

时间:2015-04-13 21:08:53      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:linux   shell   

  1. 使用case..in..esac做判断

#!/bin/bash
read -p "Please make a choice:" choice
case $choice in
"one")
    echo "Your choice is one";;
"two")
    echo "Your choice is two";;
"three")
    echo "Your choice is three";;
*)
    echo "Usage $0{one|two|three}";;
esac


linux学习之shell script(二)

标签:linux   shell   

原文地址:http://roubin.blog.51cto.com/6940094/1631920

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!