string='Hi substring' #To check if string has "Mylong" substring do if [[ $string == *"substring"* ]]; then echo "String has substring" fi