Skip to content

Instantly share code, notes, and snippets.

@developer-sdk
Created May 23, 2017 13:51
Show Gist options
  • Select an option

  • Save developer-sdk/9e2ff0ec650a604b13b12fc054f56ec0 to your computer and use it in GitHub Desktop.

Select an option

Save developer-sdk/9e2ff0ec650a604b13b12fc054f56ec0 to your computer and use it in GitHub Desktop.
bash string like
#!/bin/bash
string="abc def gh"
if [[ $string =~ "c d" ]]; then
echo "true"
else
echo "false"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment