首页 > 学院 > 开发设计 > 正文

Linux程式设计-11.ShellScript(bash)--(7)流程控制select

2019-11-18 17:25:20
字体:
来源:转载
供稿:网友
selectname[inWord;]dolist;done
select顾名思义就是在word中选择一项。与for相同,如果[inword;]省略,将会使用Script後面所加的参数。

#!/bin/sh
WORD="abc"

selectiin$WORD;do
case$iin
a)
echo"IamA"
;;
b)
echo"IamB"
;;
c)
echo"IamC"
;;
*)
break;
;;
esac
done

执行结果
[foxman@foxmanbash]#./select_demo
1)a
2)b
3)c
#?1
IamA
1)a
2)b
3)c
#?2
IamB
1)a
2)b
3)c
#?3
IamC
1)a
2)b
3)c
#?4

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表