If .{bash,zsh}rc.local are not found in ~, install them.

This commit is contained in:
Gea-Suan Lin
2014-07-05 13:25:23 +08:00
parent b495b16b5c
commit 6ac4f16290

View File

@@ -15,6 +15,12 @@ cp ${BASEDIR}/.inputrc ~/
cp ${BASEDIR}/.bashrc ~/ cp ${BASEDIR}/.bashrc ~/
cp ${BASEDIR}/.profile ~/ cp ${BASEDIR}/.profile ~/
cp ${BASEDIR}/.zshrc ~/ cp ${BASEDIR}/.zshrc ~/
if [ ! -e ~/.bashrc ]; then
cp ${BASEDIR}/.bashrc.local ~/
fi
if [ ! -e ~/.zshrc.local ]; then
cp ${BASEDIR}/.zshrc.local ~/
fi
# #
if [ ! -e ~/.screenrc ]; then if [ ! -e ~/.screenrc ]; then