当前位置:网站首页>bash case用法
bash case用法
2022-08-03 11:34:00 【小青头】
bash case用法
在bash脚本中,除了使用if做条件判断,也可以使用case做条件判断。
case比起if else可以处理条件很多,而且条件均为匹配字符串
case格式如下
case 变量 in
条件1)
语句1
语句2;;
条件2)
语句1
语句2;;
*)
语句1
语句2;;
esca
注意:
- 条件都是字符串,可以使用|,[],等简单的bash通配符,*号代表匹配所有字符串
- 语句结束需要双引号;;
示例
示例1:写一个脚本提供如下菜单显示给用户
m|M) show memory usages;显示内存信息
d|D) show disk usages;显示磁盘信息
q|Q) quit退出
[[email protected] bash_test]# cat 14.sh
#!/bin/bash
cat << EOF
m|M) show memory usages;
d|D) show disk usages;
q|Q) quit
EOF
read -p "input you choice " UserChoice
case $UserChoice in
m|M)
free -m;;
d|D)
df -h;;
q|Q)
exit 0;;
*)
echo "invalid character"
esac
[[email protected] bash_test]# ./14.sh
m|M) show memory usages;
d|D) show disk usages;
q|Q) quit
input you choice M
total used free shared buff/cache available
Mem: 7812 3227 4086 82 498 4247
注意:选项可以使用|代表或,比如输入m或M都可以查看内存信息
示例2:写一个程序,从终端中读取输入,判断输入的是数字,小写字母,大写字母,还是特殊字符
[[email protected] bash_test]# cat CheckInput.sh
#!/bin/bash
read -p "input a character:" Char
case $Char in
[0-9])
echo "a digit";;
[A-Z])
echo "a upper";;
[a-z])
echo "a lower";;
[[:punct:]])
echo "A punction.";;
*)
echo "Special char";;
esac
[[email protected] bash_test]# ./CheckInput.sh
input a character:A
a upper
注意:[a-z]需要放在[A-Z]后面,因为bash中[a-z]包括[A-Z],不过我们也可以使用[[:lower:]]代表小写字母,[[:upper:]]代表大写字母
边栏推荐
猜你喜欢
【MySQL功法】第2话 · 数据库与数据表的基本操作
Matlab学习12-图像处理之图像增强
"Global Digital Economy Conference" landed in N World, Rongyun provides communication cloud service support
Generate interface documentation online
最牛逼的集群监控系统,它始终位列第一!
3分钟实现内网穿透(基于ngrok实现)
Simple implementation of a high-performance clone of Redis using .NET (1)
ABAB-740新语法
SmobilerService 推送实现
【一起学Rust】Rust的Hello Rust详细解析
随机推荐
实至名归!九章云极DataCanvas公司荣获智能制造领域多项殊荣
LyScript 实现对内存堆栈扫描
性能优化|从ping延时看CPU电源管理
增加WebView对localStorage的支持
Objective - C code analysis of the deep and shallow copy
笔试题:金额拆分
【一起学Rust】Rust学习前准备——注释和格式化输出
Machine Learning (Chapter 1) - Feature Engineering
微信为什么使用 SQLite 保存聊天记录?
Dry goods!A highly structured and sparse linear transformation called Deformable Butterfly (DeBut)
用于发票处理的 DocuWare,摆脱纸张和数据输入的束缚,自动处理所有收到的发票
微信小程序获取用户手机号码
Machines need tokens more than people
Skills required to be a good architect: How to draw a system architecture that everyone will love?What's the secret?Come and open this article to see it!...
Programmers architecture practice way: software architecture basic concepts and thinking
Polymorphism in detail (simple implementation to buy tickets system simulation, covering/weight definition, principle of polymorphism, virtual table)
微信小程序获取手机号
redis基础知识总结——数据类型(字符串,列表,集合,哈希,集合)
VRRP协议的作用及VRRP+OSPF配置方法
Matlab学习11-图像处理之图像变换