repo: fmrl-client
action: commit
revision: 
path_from: 
revision_from: 339fd7bcc99d6fb189dc22bccffafd457d683e75:
path_to: 
revision_to: 
git.thebackupbox.net
fmrl-client
git clone git://git.thebackupbox.net/fmrl-client
commit 339fd7bcc99d6fb189dc22bccffafd457d683e75
Author: epoch 
Date:   Sun Apr 3 02:37:49 2022 +0000

    made -h, --help, and no args print a usage message

diff --git a/fmrl-update-with-patch b/fmrl-update-with-patch
index 2499bfaa96d9e74c078535216b757121a8671f4b..
index ..f0078caaad185a7f27ec60154dfdd42d2077748d 100755
--- a/fmrl-update-with-patch
+++ b/fmrl-update-with-patch
@@ -20,6 +20,13 @@ if [ ! "$user" -o ! "$host" ];then
   exit 1
 fi

+if [ "$1" == "--help" -o "$1" == "-h" -o ! "$*" ];then
+  printf "usage: $0 [you@host] [arguments to pass to fmrl-make-json]\n"
+  printf "if you@host is missing, it will try to use the value in ~/.config/fmrl-client/me\n"
+  printf "fmrl-make-json's --help:\n"
+  exec fmrl-make-json "$1"
+fi
+
 file="$(fmrl-make-json "$@")"

 echo "going to PATCH this:"

-----END OF PAGE-----