echo "Usage: ${BIN_NAME} COMMAND"
echo "Wrapper around certain borgbackup usages.\n"
echo "Available commands:\n"
- echo " claim PATH register file of PATH as key to repo at \"$(location_from_servername SERVERNAME)\", with SERVERNAME the filename portion of PATH"
- echo " help print this help and exit"
- echo " keys list known repos in ID, key filename, and alleged location"
- echo " orgpull pull most recent org directory available in repos"
+ for _CMD in ${COMMANDS}; do
+ _ARGS="$(eval printf '%s' '"${HELP_ARGS_' ${_CMD} '}"')"
+ _DESC="$(eval printf '%s' '"${HELP_DESC_' ${_CMD} '}"')"
+ printf ' %s%s\t%s' "${_CMD}" "${_ARGS}" "${_DESC}"
+ done
}
# exits
fi
}
+HELP_ARGS_claim=' PATH'
+HELP_DESC_claim="register file of PATH as key to repo at \"$(location_from_servername SERVERNAME)\", with SERVERNAME the filename portion of PATH"
cmd_claim() {
_check_args_beyond 1 "$@"
_PATH_SOURCE="$1"
chmod u+rw "${_PATH_TARGET_KEY}" "${_PATH_TARGET_LOCATION}"
}
+HELP_DESC_help='print this help and exit'
cmd_help() {
_check_args_beyond 0 "$@"
_print_usage
}
+HELP_DESC_keys='list known repos in ID, key filename, and alleged location'
cmd_keys() {
_check_args_beyond 0 "$@"
_exit_ok() {
done
}
+HELP_orgpull='pull most recent org directory available in repos'
cmd_orgpull() {
_check_args_beyond 0 "$@"
_NAME_ARCHIVE=orgdir