gaboshlib/g_num_is_higher.sh aktualisiert

This commit is contained in:
olli 2023-11-03 15:05:04 +01:00
parent 5d95859d72
commit 263a2ccf3b

View File

@ -1,3 +1,31 @@
function g_num_is_higher_equal {
local f_num=$1
local f_checkhigher=$2
# Check for integer (can be done with bash itself)
if [[ ${f_num} =~ ^[0-9]+$ ]] && [[ ${f_checkhigher} =~ ^[0-9]+$ ]]
then
# Check which is the low (from) and the high (to) number
if [ "${f_num}" -ge "${f_checkhigher}" ]
then
return 0
else
return 1
fi
fi
# Check for valid number
g_num_valid_number "$f_num" "$f_checkhigher" || return 1
if [ $(g_calc "${f_num} >= ${f_checkhigher}") -ne 0 ]
then
return 0
else
return 1
fi
}
function g_num_is_higher {
local f_num=$1