X-Git-Url: http://git.hcoop.net/clinton/scripts.git/blobdiff_plain/719a1db950a950713b410243566b5b482f51859b..3c4375e5bf35bcd0d5b21c37c060ec8f3b1e19f0:/backup-manager diff --git a/backup-manager b/backup-manager index 4ee17e2..c362af8 100755 --- a/backup-manager +++ b/backup-manager @@ -94,6 +94,7 @@ function usage() { echo "Usage: backup-manager [get|list|quota] [args...]" echo "Commands:" echo " get DATE FILE Fetch a file into $RESTORE_LOC" + echo " help Display this message" echo " list [DATE] List dates available, or files with given date" echo " quota Display info about the quota" echo " restore DATE FILE VOLUME-NAME" @@ -115,6 +116,7 @@ cmd=$1 shift case $cmd in get) get $@ ;; + help) usage ;; list) list $@ ;; quota) quota $@ ;; restore) restore $@ ;;