function adei_print_status { cmd="$1" online="$2" healthy="$3" if [[ "$cmd" =~ check_adei_ ]]; then echo "$healthy" else echo "$online $healthy" fi } function format_time { offset=$1 if [ $offset -ge 86400 ]; then echo "$((offset / 86400))d" elif [ $offset -ge 3600 ]; then echo "$((offset / 3600))h" elif [ $offset -ge 60 ]; then echo "$((offset / 60))m" else echo "${offset}s" fi }