shellLinux shell 之 case 详解
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shellLinux shell 之 case 详解相关的知识,希望对你有一定的参考价值。
总的来说,case是一个判断语句 ,比if更加容易理解一点。
case 语句格式
case in 变量
值1)
内容 ;;
值2)
内容 ;;
esac
注意:每个内容后面都需要添加 ;; ,可以跨行也可以同行写。
实例:根据用户输入的选择执行语句。
#!/bin/bash -
# 打印选择菜单
cat <<EOF
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
[[email protected] 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......
版权所有:arppinging
以上是关于shellLinux shell 之 case 详解的主要内容,如果未能解决你的问题,请参考以下文章
shellLinux shell 之 判断用户输入的变量是否为数字