linha de comando se a saída do comando for igual a string

if [[ $(< your command giving output >) = *< substring to match >* ]]; then
  < your command if the substring is found anywhere in the output >
fi
Rich Raccoon