Skip to content

Instantly share code, notes, and snippets.

@coderofsalvation
Last active January 3, 2016 08:39
Show Gist options
  • Select an option

  • Save coderofsalvation/8437817 to your computer and use it in GitHub Desktop.

Select an option

Save coderofsalvation/8437817 to your computer and use it in GitHub Desktop.
checks if argument is an url
# checks if argument is an url
# usage: is_url "http://foo.com" && echo "yes im an url"
# @param string
is_url(){
[[ "$1" =~ ^http ]] && return 0 || return 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment