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

Shell的select语句

时间:2016-02-25 12:04:26      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:linux select


[xiaomo@vm01 ~]$ cat test1.sh
#!/bin/bash

echo "你的是什么操作系统?"
select os in "Linux" "Unix" "Mac" "Windows"
do
    break
done
echo "你的操作系统是$os"

[xiaomo@vm01 ~]$ ./test1.sh     #?后面的数字需要用户手动输入
你的是什么操作系统?
1) Linux
2) Unix
3) Mac
4) Windows
#? 1
你的操作系统是Linux
[xiaomo@vm01 ~]$ ./test1.sh
你的是什么操作系统?
1) Linux
2) Unix
3) Mac
4) Windows
#? 2
你的操作系统是Unix

本文出自 “小莫” 博客,请务必保留此出处http://xiaofengmo.blog.51cto.com/10116365/1744945

Shell的select语句

标签:linux select

原文地址:http://xiaofengmo.blog.51cto.com/10116365/1744945

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