From 5aa7522541b72026ce71b6593d5ff8018a966ec1 Mon Sep 17 00:00:00 2001 From: mwolson_admin Date: Sun, 28 Oct 2007 22:21:41 -0400 Subject: [PATCH] run-in-pagsh: Use $HOME rather than "~" so that paths can be quoted Otherwise, several utilities like rm and test can't resolve "~" properly. Sigh. --- run-in-pagsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run-in-pagsh b/run-in-pagsh index 5a54629..3d4f6cb 100755 --- a/run-in-pagsh +++ b/run-in-pagsh @@ -22,13 +22,13 @@ if test -z "$2"; then echo "Error: not enough arguments." echo "Usage: run-in-pagsh name command [arguments] ..." exit 1 -elif test ! -d "~/.run"; then +elif test ! -d "$HOME/.run"; then echo "Error: the ~/.run directory must exist before running this script." exit 1 fi # Use a different PID file for each program. -K5PID=~/.run/$1.pid +K5PID=$HOME/.run/$1.pid # The command to run. shift -- 2.20.1