repo: uritools action: commit revision: path_from: revision_from: 86480f1eca8820cf67c95359780c62c3a89d4485: path_to: revision_to:
commit 86480f1eca8820cf67c95359780c62c3a89d4485 Author: epochDate: Mon Oct 25 07:49:36 2021 +0000 escape the single quotes from the env vars that get exported. stuff with x-face data is good for debugging.. derped on a non-empty check of arguments as multiple quoted strings instead of just one. diff --git a/uristart b/uristart
--- a/uristart
+++ b/uristart
@@ -10,6 +10,8 @@ ASKUSER="choose"
check=dont
+eval "$(printf "%s\n" "$1" | uricut | sed 's/^/export URI/;s/'\''/'\''\\'\'''\''/;s/: /='\''/g;s/$/'\''/')"
+
uristart_config=~/.config/uristart.conf
usage() {
@@ -43,7 +45,7 @@ if [ "$verbose" ];then
echo "uristart: other:" "$@" >&2
fi
-if [ ! "$@" ];then
+if [ ! "$*" ];then
usage >&2 #to stderr because it is an error to not have any extra args to process
exit 1
fi
-----END OF PAGE-----