Files
gaboshlib/gaboshlib/g_percentage-diff.bashfunc

11 lines
304 B
Bash

#!/bin/bash
function g_percentage-diff {
local g_from=$1
local g_to=$2
g_num_valid_number "$g_from" "$g_to" || return 1
[ $(g_calc "${g_from} == 0") -eq 1 ] && return 1
[ $(g_calc "${g_to} == 0") -eq 1 ] && return 1
printf -- "%.2f" $(g_calc "100/${g_from}*(${g_to}-${g_from})")
}