vech='car bus bike rail airplane'
Use the following syntax:
[[ $vech = *car* ]] && echo "Car found in \$vech" || echo "Sorry"You can also use the following syntax:
You can use grep to display matching pattern only:
case "$vech" in
*car*) echo "Car found, do something" ;;
*bus*) echo "call bus()";;
*) echo "Error..."
esac
grep -o "car" <<<"$vech"
OR
echo "$vech" | grep -o "car"
No comments:
Post a Comment