From: ijackson Date: Sat, 3 Aug 2002 14:37:18 +0000 (+0000) Subject: retry X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ijackson/git?a=commitdiff_plain;h=f82111e1238fd8364e1e24862aba81409238aefb;p=ircbot.git retry --- diff --git a/on-vc.sh b/on-vc.sh index e68d1a7..e560ed4 100755 --- a/on-vc.sh +++ b/on-vc.sh @@ -13,12 +13,13 @@ PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin fail () { echo 2>&1 "$0: $1"; exit 1; } -test $# = 2 || fail "usage: $0 VC SCRIPT" +test $# -ge 2 || fail "usage: $0 VC SCRIPT [ARGS]" vc="$1" script="$2" +shift; shift cd "$(dirname $0)" test -L .tclshrc || fail "no .tclshrc symlink" test -x "./$script" || fail "script not executable" -openvt -f -c "$vc" -w -- screen ./"$script" +openvt -f -c "$vc" -w -- screen ./"$script" "$@"