aboutsummaryrefslogtreecommitdiffstats
path: root/.config/init/funcs
diff options
context:
space:
mode:
authorkatherine <shmibs@shmibbles.me>2017-02-21 11:03:15 -0700
committerkatherine <shmibs@shmibbles.me>2017-02-21 11:03:15 -0700
commitce4b99960f11ee9371ea4468247643d42ac05f9b (patch)
treeb448fe18ab8748cd07c3c0734426d4aa1ea0836e /.config/init/funcs
parentd6d90dc05da1d182c596caa8eba9a31c5f15d7ed (diff)
downloaddotfiles-ce4b99960f11ee9371ea4468247643d42ac05f9b.tar.gz
rewrite b2h
Diffstat (limited to '.config/init/funcs')
-rwxr-xr-x.config/init/funcs/b2h34
1 files changed, 26 insertions, 8 deletions
diff --git a/.config/init/funcs/b2h b/.config/init/funcs/b2h
index 3a8d15a..0ecd3da 100755
--- a/.config/init/funcs/b2h
+++ b/.config/init/funcs/b2h
@@ -1,14 +1,32 @@
#!/usr/bin/env zsh
-# convert bits to human-readable value
+# convert sizes in bits/bytes/kbytes/etc to human-readable strings
-local suffixes=( 'B' 'K' 'M' 'G' 'T' 'P' 'E' 'Z' 'Y' )
-local sindex=1
-local val=$1
-[[ -z $(echo $1 | grep "^[0-9]*$") ]] && read val
+typeset -i sindex
-while [[ $(echo $val / 1024 | bc) -ne 0 ]]; do
- val=$(echo "scale=2; $val / 1024" | bc)
+suffices=( 'b' 'kb' 'mb' 'gb' 'tb' 'pb' 'eb' 'zb' 'yb' )
+
+[[ -z $(echo $1 | grep --extended-regexp '^[0-9]*([kmgtpezy]{0,1}b){0,1}$') ]] && return 1
+
+val=$(echo $1 | grep -o '^[0-9]*');
+suf=$(echo $1 | grep -o --extended-regexp '([kmgtpezy]{0,1}b){0,1}$');
+
+if [[ "$suf" == "" ]]; then
+ if [[ $(echo $val / 8 | bc) -ne 0 ]]; then
+ val=$(echo "scale=2; $val / 8" | bc)
+ else
+ echo $val
+ return 0;
+ fi
+fi
+
+sindex=1
+for ((i=1; i <= ${#suffices}; i++)) do
+ [[ "$suf" == "${suffices[$i]}" ]] && let sindex=i
+done
+
+while [[ $(echo $val / 1000 | bc) -ne 0 ]]; do
+ val=$(echo "scale=2; $val / 1000" | bc)
let sindex=sindex+1
done
-echo "${val}${suffixes[$sindex]}"
+echo "${val}${suffices[$sindex]}"