shell利用grep判定文件内是否存在指定文本if [ "0" -ge `grep -c "systemup" /etc/crontabs/root` ] ;then echo "不存在指定文本" else echo "存在指定文本" fi
CodingSorcery