shell grep

grep "str" file > /dev/null

if [ $? -eq 1]; then

  echo "no str"

else

  echo "find str"

fi

输出到/dev/null中为了不打印输出

 

posted @ 2017-01-17 09:52  chencesc  阅读(108)  评论(0编辑  收藏  举报