Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save coderofsalvation/8377399 to your computer and use it in GitHub Desktop.
This function checks if an defined function or command exist.
# This function checks if an defined function or command exist.
#
# @param string $1 function name (required)
# @return bool
# @example: is_function "rc_myfunc" || exit 1
is_function() {
type "$1" &>/dev/null && return 0 || return 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment