Bash中判断一个命令的输出结果是否为空


如果我们想在Bash中判断一个命令的输出结果是否为空,我们可以使用test命令和-z参数。示例代码如下:

if test -z "$(ls | grep test1.txt)"; then
    echo "The result is empty."
else
    echo "The result is not empty."
fi
 
if test ! -z "$(ls | grep test2.txt)"; then
    echo "The result is not empty."
else
    echo "The result is empty."
fi

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM