From: Silvio Rhatto Date: Fri, 10 Mar 2017 17:15:24 +0000 (-0300) Subject: Fixes usage X-Git-Tag: 0.1.0~566 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=00c9b37a6d89fedb0c4b95066d8f27367cbfe7ee;p=kvmx.git Fixes usage --- diff --git a/kvmx b/kvmx index 6fd328d..6a67d09 100755 --- a/kvmx +++ b/kvmx @@ -124,7 +124,7 @@ function kvmx_usage { echo "" echo "available actions:" echo "" - grep "^function kvmx_" $0 | cut -d ' ' -f 2 | sed -e 's/kvmx_/\t/' + grep "^function kvmx_" $0 | cut -d ' ' -f 2 | sed -e 's/kvmx_/\t/' | sort echo "" echo "examples:" echo "" @@ -268,7 +268,7 @@ function kvmx_initialize { mkdir -p $GLOBAL_USER_CONFIG_FOLDER # Load and check guest config - if [ "$ACTION" != "init" ] && [ "$ACTION" != "list" ] && [ "$ACTION" != "edit" ]; then + if [ "$ACTION" != "init" ] && [ "$ACTION" != "list" ] && [ "$ACTION" != "edit" ] && [ "$ACTION" != "usage" ]; then if [ ! -e "$GLOBAL_USER_CONFIG_FOLDER/$VM" ]; then echo "$BASENAME: config not found: $GLOBAL_USER_CONFIG_FOLDER/$VM" exit 1