这篇文章主要给大家介绍了关于linux shell判断字符串为空的正确方法,文中通过示例代码介绍的非常详细,对大家学习或者使用linux shell具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧
shell判断字符串为空的方法
Linux 下判断字符串是否为空,可以使用两个参数:
● -z :判断 string 是否是空串
● -n :判断 string 是否是非空串
例子:
#!/bin/sh STRING= if [ -z "$STRING" ]; then echo "STRING is empty" fi if [ -n "$STRING" ]; then echo "STRING is not empty" fi root@desktop:~# ./zerostring.sh STRING is empty
注:在进行字符串比较时, 用引号将字符串界定起来 ,是一个非常好的习惯!
其他方法:
if [ "$str" = "" ]
(在线视频教程分享:linux视频教程)
Atas ialah kandungan terperinci shell判断字符串为空的方法. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!