shell编程之变量测试

前端之家收集整理的这篇文章主要介绍了shell编程之变量测试前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
一 测试表达式
格式复杂,逻辑简单
变量测试在变量优化时使用


二 实战
[root@localhost ~]# unset y
[root@localhost ~]# x=${y-2}
[root@localhost ~]# echo $x
2
[root@localhost ~]# y=""
[root@localhost ~]# x=${y-2}
[root@localhost ~]# echo $x
[root@localhost ~]# y=1
[root@localhost ~]# x=${y-2}
[root@localhost ~]# echo $x
1
原文链接:https://www.f2er.com/bash/390907.html

猜你在找的Bash相关文章