判斷grep到的內容是否包含特定的字符

strA=`grep "555" 1.txt`----------->首先查到包含555的行 strB="444" if [[ $strA =~ $strB ]]------------->判斷查到的內容是否包含444 then   echo "yes" else   echo "no" fi  grep
相關文章
相關標籤/搜索