摘要: 如果我们想在Bash中判断一个命令的输出结果是否为空,我们可以使用test命令和-z参数。示例代码如下: if test -z "$(ls | grep test1.txt)"; then echo "The result is empty." else echo "The result is no 阅读全文
posted @ 2021-03-09 17:26 陌鉎こ城sHi 阅读(2819) 评论(0) 推荐(0) 编辑