我试图做一个简单的比较来检查一行是否为空,使用bash:
line=$(cat test.txt | grep mum ) if [ "$line" -eq "" ] then echo "mum is not there" fi
但是它不起作用,它说:[:参数太多了
非常感谢你的帮助!
你也可以使用$?变量设置为命令的返回状态。所以你会有:
原文链接:https://www.f2er.com/bash/387545.htmlline=$(grep mum test.txt) if [ $? -eq 1 ] then echo "mum is not there" fi
对于grep命令,如果有任何匹配$?设置为0(退出干净),如果没有匹配$?是1。