$_ is "The last argument of the previous command." (cf. man zshparam) on
zsh, so SRC will be "]".
This commit is contained in:
Fumiya Chiba 2015-04-15 20:42:18 +09:00
Родитель 3bea227bf9
Коммит 3bf41eba42
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -17,7 +17,7 @@
SRC="$BASH_SOURCE"
if [ "$SRC" = "" ]; then
SRC="$_"
SRC="$0"
fi
pushd `dirname "$SRC"` > /dev/null
unset SRC