标签:Shell case
格式:case 变量 in
1) ... ;;
2) ... ;;
.
*) ... ;; # *)相当于default
esac
例子:
#!/bin/bash
echo "1.linux 2.window 3.macOS 4.UNIX"
read -p "请选择系统编号:" number
case $number in
1) echo "linux";;
2) echo "window";;
3) echo "macOS";;
4) echo "UNIX";;
*) echo "对不起不能为你服务";;
esac
运行结果:
1.linux 2.window 3.macOS 4.UNIX
请选择系统编号:5
对不起不能为你服务
标签:Shell case
原文地址:http://blog.51cto.com/13502993/2096018