]> git.madduck.net Git - code/molly-guard.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

* New upstream release, which does better shell quoting. 0.2.1
authormadduck <madduck@19660600-52fe-0310-9875-adc0d7a7b53c>
Thu, 19 Oct 2006 16:18:36 +0000 (16:18 +0000)
committermadduck <madduck@19660600-52fe-0310-9875-adc0d7a7b53c>
Thu, 19 Oct 2006 16:18:36 +0000 (16:18 +0000)
* New upstream release, which handles --help related options better.

shutdown

index cb567c299405b772656b8249f7140168bab0c86c..c9b34f2190e68d41bdea5685375506e79bc723a9 100755 (executable)
--- a/shutdown
+++ b/shutdown
@@ -36,11 +36,11 @@ do_real_cmd()
 {
   case "$ARGS" in
     (*--molly-guard-do-nothing*)
-      ARGS0="${ARGS%%--molly-guard-do-nothing*}"
+      ARGS0="${ARGS%% --molly-guard-do-nothing*}"
       ARGS1="${ARGS##*--molly-guard-do-nothing}"
-      echo "$ME: would run: $EXEC $ARGS0 $ARGS1"
+      echo "$ME: would run: $EXEC $ARGS0 ${ARGS1# }"
       exit 0;;
-    *) exec $EXEC "$ARGS";;
+    *) eval exec $EXEC "$ARGS";;
   esac
 }
 
@@ -51,7 +51,8 @@ test -t 0                    || do_real_cmd
 # pass through help commands
 case "$CMD $ARGS" in
   (shutdown\ *-c*) do_real_cmd;;
-  (*-h*) do_real_cmd;;
+  (shutdown\ *-h*) do_real_cmd;;
+  (*--help*) do_real_cmd;;
   *) :;;
 esac