Answers for "substring bash check"

1

bash if substring

string='Hi substring' #To check if string has "Mylong" substring do
if [[ $string == *"substring"* ]]; then
  echo "String has substring"
fi
Posted by: Guest on May-26-2021
0

bash substring test

#!/bin/bash

STR='GNU/Linux is an operating system'
SUB='Linux'

case $STR in

  *"$SUB"*)
    echo -n "It's there."
    ;;
esac
Posted by: Guest on June-29-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language