Remove -o h shortcut

Since human readable format is the default, this shortcut is useless.
This commit is contained in:
Alexis Ben Miloud--Josselin 2019-07-29 17:40:18 +02:00
parent f7982f2577
commit e246f02058

View file

@ -8,7 +8,7 @@ error () {
} }
usage () { usage () {
echo 'usage: kvmstats [-a] [-u k|m|g] [-o h|human|html|csv]' >&2 echo 'usage: kvmstats [-a] [-u k|m|g] [-o human|html|csv]' >&2
exit 1 exit 1
} }
@ -27,7 +27,7 @@ do
;; ;;
'-o') '-o')
case $2 in case $2 in
'h' | 'human') 'human')
FMT=human FMT=human
;; ;;
'html') 'html')