linux中的shell脚本case,【shell】Linux shell 之 case 详解

总的来说,case是一个判断语句 ,比if更加容易理解一点。

case 语句格式

case in 变量

值1)

内容 ;;

值2)

内容 ;;

esac

注意:每个内容后面都需要添加 ;; ,可以跨行也可以同行写。

实例:根据用户输入的选择执行语句。

#!/bin/bash -

# 打印选择菜单

cat <

Option:

1) restart networking service.

2) start networking service.

3) stop networking service.

*) exit.

EOF

read -p "Please enter a option:" number

# 使用case语句对参数进行判断

case $number in

1)

echo "The Networking service is restart,wait......" ;;

2)

echo "The Networking service is start,wait......" ;;

3)

echo "The Networking service is stop,wait......" ;;

*)

echo "exit." ;;

esac

[root@XiaoPeng scripts]# bash case.sh

Option:

1) restart networking service.

2) start networking service.

3) stop networking service.

*) exit.

Please enter a option:1

The Networking service is restart,wait......

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值