revert „gaboshlib/g_percentage-diff.bashfunc“ ändern
This commit is contained in:
olli 2023-02-15 19:10:49 +01:00
parent 514a6c8224
commit 3c28105f73

View File

@ -3,5 +3,5 @@
function g_percentage-diff { function g_percentage-diff {
local g_from=$1 local g_from=$1
local g_to=$2 local g_to=$2
echo "scale=2; 100/$g_from*($g_to-$g_from)" | bc | sed 's/^\./0./; s/^-\./-0./' echo "scale=2; 100/$g_from*($g_to-$g_from)" | bc | sed 's/^\./0./; s/^-\./-0./' | xargs printf "%.2f"
} }