home · contact · privacy
Fix. master
authorChristian Heller <c.heller@plomlompom.de>
Fri, 4 Apr 2025 14:08:48 +0000 (16:08 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Fri, 4 Apr 2025 14:08:48 +0000 (16:08 +0200)
testing/home/desktop/.local/bin/borgplom
testing/home/desktop/.plomlib.sh/print_usage

index 141c8c202f470d02e85253a49cfd1c957c3de0d0..1f1eccd237107cb89d0b8c1717de92edf2052976 100755 (executable)
@@ -121,7 +121,7 @@ CMDFNC_help() {
 }
 
 USAGE_ARGS_info='SERVER_NAME [ARCHIVE]'
-USAGE_DESC_info="run 'borg info' against repo at \"$(location_from_servername SERVER_NAME)\", optionally only against ARCHIVE; if latter not provided, instead list most recent archives of repo"
+USAGE_DESC_info="run 'borg info' against repo at \"$(location_from_servername SERVER_NAME)\", optionally only against ARCHIVE; if latter not provided, list most recent archives of repo"
 CMDFNC_info() {
     _check_args_n 1 2 "$@"
     _TARGET_REPO="$(location_from_servername ${1})"
index 15448ea18f371151c5eef4663b6ec416b7cad836..b1d620418676d289d9e915ba31f4d3bc0e8630fe 100644 (file)
@@ -1,8 +1,7 @@
 print_usage() {
-    _BIN_NAME="$(basename $0)"
     echo 'Usage:'
     echo "${USAGE_LINES}" | while read _LINE; do
-        echo "  ${_BIN_NAME} ${_LINE}"
+        echo "  $(basename $0) ${_LINE}"
     done
     echo "\n${USAGE_DESCRIPTION}\n"
     _var_of() { eval printf '"%s"' '"${'"${1}${2}"'}"'; }