我知道如何使用以下方法检查参数是否为整数:
if [[ $2 = *[[:digit:]]* ]]; then # $2 is a number else # $2 is not a number fi
但是,我需要检查参数是否不是整数.我怎样才能做到这一点?
解决方法
$2 = * [[:digit:]] *仅检查$2是否包含数字.
# is an integer [[ $2 =~ ^[[:digit:]]+$]] # is not an integer [[ ! $2 =~ ^[[:digit:]]+$]]