2019年11月28日 星期四

shell script 判斷grep字串是否有值

cat testfile.txt | grep -q 'JAMES'
if [ $? -ne 0 ]       #$?=0表示有找到值,1表示未找到, 2表示命令執行錯誤. ne=not eq
then
      echo "not find JAMES"
else
      echo "find JAMES"
fi

沒有留言: