Skip to content

Instantly share code, notes, and snippets.

@jybaek
Created December 15, 2015 03:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jybaek/f4189cbe4ee1a084f6e3 to your computer and use it in GitHub Desktop.
Save jybaek/f4189cbe4ee1a084f6e3 to your computer and use it in GitHub Desktop.
string compare
#!/bin/sh
AA="My name is oops"
BB="name"
if [[ "$AA" == *"name"* ]];then
echo "1st find it"
fi
if [[ "$AA" =~ "name" ]];then
echo "2nd find it"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment