我正在寻找正确的方法来查看是否定义了函数。一种符合 POSIX 标准的方式。
__function_defined() {
FUNC_NAME=$1
d=$(declare -f $FUNCNAME)
if [ "${DISTRO_NAME_L}" = "centos" ]; then
if typeset -f $FUNC_NAME &>/dev/null ; then
echo " * INFO: Found function $FUNC_NAME"
return 0
fi
# Try POSIXLY_CORRECT or not
elif test -n "${POSIXLY_CORRECT+yes}"; then
if typeset -f ${FUNC_NAME} >/dev/null 2>&1 ; then
echo " * INFO: Found function $FUNC_NAME"
return 0
fi
else
# Arch linux seems to fall here
if $( type ${FUNC_NAME} >/dev/null 2>&1 ) ; then
echo " * INFO: Found function $FUNC_NAME"
return 0
fi
echo " * INFO: $FUNC_NAME not found...."
return 1
}
根据 debian 的checkbashisms脚本,以上所有内容都被视为 bash'isms。
尝试 grep 脚本也不行。例如:
if [ "$(grep $FUNC_NAME $(dirname $0)/$(basename $0))x" != "x" ]; then
# This is really ugly and counter producing but it was, so far, the
# only way we could have a POSIX compliant method to find if a function
# is defined within this script.
echo " * INFO: Found function $FUNC_NAME"
return 0
fi
不起作用,因为脚本也应该像这样工作:
wget --no-check-certificate -O - http://URL_TO_SCRIPT | sudo sh
那么,什么是正确的、符合 POSIX 标准的方法呢?
请纯 sh,不要 bash,不要 ksh,不要其他 shell,只需纯 sh。哦,而且实际上也没有尝试运行该功能:)
可能吗?
我找到了一个符合 POSIX 的解决方案:
if [ "$(command -v $FUNC_NAME)x" != "x" ]; then
echo " * INFO: Found function $FUNC_NAME"
return 0
fi
现在的问题是,有更好的解决方案吗?