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
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ error () {
}
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
}
@ -27,7 +27,7 @@ do
;;
'-o')
case $2 in
'h' | 'human')
'human')
FMT=human
;;
'html')