minor improvements
authorIan Kelling <ian@iankelling.org>
Mon, 11 Mar 2024 00:25:06 +0000 (20:25 -0400)
committerIan Kelling <ian@iankelling.org>
Mon, 11 Mar 2024 00:25:06 +0000 (20:25 -0400)
brc2
btrbk-run

diff --git a/brc2 b/brc2
index e7d50e3f06b7d37d083a1e393e54bc22fa05bb5c..5c86f00f8845b7c5f18885922fdb06c77f300cb7 100644 (file)
--- a/brc2
+++ b/brc2
@@ -4055,7 +4055,7 @@ ref() {
        -o -name .hg -prune -o -name .editor-backups -prune \
        -o -name .undo-tree-history -prune \) 2>/dev/null | grep -iP --color=auto -- "$*" ||:
   rgv -- "$*" $paths /a/work.org ||:
-  }
+}
 
 
 # for use in /f/bind
@@ -4349,6 +4349,14 @@ attach-txt() {
   done | ec
 }
 
+ctof() {
+  units "tempC($1)" tempF
+}
+
+ftoc() {
+  units "tempF($1)" tempC
+}
+
 export BASEFILE_DIR=/a/bin/fai-basefiles
 
 #export ANDROID_HOME=/a/opt/android-home
index 34b23a8af6a552d79672b55a0dc3b55b5cdc8186..1ca6f57ab2d4092e0b98862caa0f6380113046ab 100644 (file)
--- a/btrbk-run
+++ b/btrbk-run
@@ -474,9 +474,31 @@ log_path=/var/log/btrbk/$(date +%F_%T%:::z).log
 echo copying output to $log_path
 exec &> >(pee cat 'ts "%F %T"|dd of='$log_path' status=none')
 
-
+# print some non-default opts
 if $verbose; then
-  printf " options: conf_only=%s\ndry_run=%s\nrate_limit=%s\nverbose=%s\ncmd_arg=%s\n" "$conf_only" "$dry_run" "$rate_limit" "$verbose" "$cmd_arg"
+  opts_show=()
+  if ! $conf_only; then
+    opts_show+=(conf_only=true)
+  fi
+  if ! $dry_run; then
+    opts_show+=(dry_run=true)
+  fi
+  if [[ $rate_limit != no ]]; then
+    opts_show+=("rate_limit=$rate_limit")
+  fi
+  if [[ $cmd_arg != run ]]; then
+    opts_show+=(cmd_arg=$cmd_arg)
+  fi
+  if (( $opts_show >= 1 )); then
+    first=true
+    for opt in ${opts_show[@]}; do
+      if $first; then
+        printf "%s" "$opt"
+      else
+        printf " %s" "$opt"
+    done
+    echo
+  fi
 fi
 
 if [[ -v targets ]]; then
@@ -490,8 +512,6 @@ fi
 echo "mountpoints: ${mountpoints[*]}"
 
 
-
-
 # pull_reexec stops us from getting into an infinite loop if there is some
 # kind of weird problem
 pulla=false