多くの人は、pathmunge
変数の重複を避けるために、Bourneシェル互換のドットファイルで使用される標準関数についてよく知っていますPATH
。またLD_LIBRARY_PATH
、変数に対して同様の関数を作成したMANPATH
ので、myには3つの関数があります.bashrc
。
# function to avoid adding duplicate entries to the PATH
pathmunge () {
case ":${PATH}:" in
*:"$1":*)
;;
*)
if [ "$2" = "after" ] ; then
PATH=$PATH:$1
else
PATH=$1:$PATH
fi
esac
}
# function to avoid adding duplicate entries to the LD_LIBRARY_PATH
ldpathmunge () {
case ":${LD_LIBRARY_PATH}:" in
*:"$1":*)
;;
*)
if [ "$2" = "after" ] ; then
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$1
else
LD_LIBRARY_PATH=$1:$LD_LIBRARY_PATH
fi
esac
}
# function to avoid adding duplicate entries to the MANPATH
manpathmunge () {
case ":${MANPATH}:" in
*:"$1":*)
;;
*)
if [ "$2" = "after" ] ; then
MANPATH=$MANPATH:$1
else
MANPATH=$1:$MANPATH
fi
esac
}
ファイルサイズを小さくするために、これら3つの機能を1つにまとめるエレガントな方法はありますか.bashrc
? Cで参照に渡すのと同様に、確認/設定する変数を渡す方法はありますか?
答え1
eval
既知の変数名を使用して変数値を取得および設定できます。 Bashとスプリント:
varmunge ()
{
: '
Invocation: varmunge <varname> <dirpath> [after]
Function: Adds <dirpath> to the list of directories in <varname>. If <dirpath> is
already present in <varname> then <varname> is left unchanged. If the third
argument is "after" then <dirpath> is added to the end of <varname>, otherwise
it is added at the beginning.
Returns: 0 if everthing was all right, 1 if something went wrong.
' :
local pathlist
eval "pathlist=\"\$$1\"" 2>/dev/null || return 1
case ":$pathlist:" in
*:"$2":*)
;;
"::")
eval "$1=\"$2\"" 2>/dev/null || return 1
;;
*)
if [ "$3" = "after" ]; then
eval "$1=\"$pathlist:$2\"" 2>/dev/null || return 1
else
eval "$1=\"$2:$pathlist\"" 2>/dev/null || return 1
fi
;;
esac
return 0
}
答え2
Bash 4.3以降ではdeclare -n
。
# function to avoid adding duplicate entries to the PATH
pathmunge () {
declare -n thepath=$1
case ":${thepath}:" in
*:"$2":*)
;;
*)
if [ "$3" = "after" ] ; then
thepath=$thepath:$2
else
thepath=$2:$thepath
fi
;;
esac
}
次のように呼び出すことができます。
pathmunge PATH ~/bin
pathmunge MANPATH /usr/local/man after