execute_function: execute function if exist

This commit is contained in:
Kay Marquardt (Gnadelwartz) 2019-05-26 18:22:31 +02:00
parent d23bb28ebc
commit 3c6b2d3b35
1 changed files with 5 additions and 1 deletions

View File

@ -11,7 +11,7 @@
# This file is public domain in the USA and all free countries.
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
#
#### $$VERSION$$ v0.90-dev2-3-g483da5a
#### $$VERSION$$ v0.90-dev2-4-gb60f33a
#
# Exit Codes:
# - 0 sucess (hopefully)
@ -198,6 +198,10 @@ _exists()
[ "$(LC_ALL=C type -t "$1")" = "file" ]
}
# execute function if exists
_execute_function() {
[ "$(LC_ALL=C type -t "${1}")" = "function" ] && "$@"
}
# returns true if function exist
_is_function()
{