主要从事Linux,云原生架构改造,服务网格,ELK,python,golang等相关技术。
发布时间:2014-12-10 16:30:45
1.这里我们使用了 &&和||运算符,程序可实现短路功能[root@server4 mnt]# a=1[root@server4 mnt]# b=1[root@server4 mnt]# test "$a" = "$b" && echo yes || echo noyes[root@server4 mnt]# b=2[root@server4 mnt]# test "$a" = "$b" && echo yes || echo nono2.比较a=1和b=1之间的大小[root@server4 mnt]# [ "$a.........【阅读全文】