From 05175deb43e4643176c377b9c7d2fe828c9dae30 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Sat, 17 May 2008 13:16:03 +0100 Subject: [PATCH] fix use of $0 --- .zsh/func/vcsh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.zsh/func/vcsh b/.zsh/func/vcsh index 0a08b5e..655c9ea 100755 --- a/.zsh/func/vcsh +++ b/.zsh/func/vcsh @@ -13,8 +13,8 @@ local FGIT_BASE="$HOME/.fgits" if [ "${1:---help}" = '--help' ] || [ $# -gt 1 ]; then - echo "usage: ${0%/*} reponame" >&2 - echo "usage: ${0%/*} -l" >&2 + echo "usage: ${0##*/} reponame" >&2 + echo "usage: ${0##*/} -l" >&2 [ "$1" = '--help' ] return $? @@ -38,4 +38,4 @@ unset _WORKTREE git status -PS1="%S{VCSH:$1}%s$PS1" $SHELL -i +PS1="%S{${0##*/}:$1}%s$PS1" $SHELL -i -- 2.39.2