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