51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

shell case语句

shell 编程 case in 也可以说是shell switch case , 因为再其他编程语言中都有 switch 这个关键词。

先来说说 case in 吧 。

case流程判断
语法结构:
case 变量  in
	    匹配序列1)
		执行命令
		;;
		匹配序列2)
		执行命令
		;;
		匹配序列3)
		执行命令
		;;
		*)
		无匹配后续命令
esac

demo:

[root@baimeidashu ~]#cat case.sh 
#!/bin/bash
case $1 in
	mysql)
	echo mysql.............
	;;
	shell)
	echo shell.............
	;;
	docker)
	echo docker............
	;;
	*)
	echo "Usage: $0 [mysql|shell|docker]"
esac

还有 一种写法:


shell case语句
shell case in 多个值
shell case用法
Shell Case Special Attack Team
Shell Case Task Force
Shell Casey
shellcase品牌
shellcase公司
shellcase正则匹配一串数字
shellcase是什么
欢迎来撩 :shell 编程从0到1

赞(0)
未经允许不得转载:工具盒子 » shell case语句