10 lines
195 B
Bash
10 lines
195 B
Bash
. ~/.bashrc
|
|
|
|
if [ -d ~/git/dotfiles ] ; then
|
|
bash ~/git/dotfiles/pull.sh
|
|
# . ~/git/dotfiles/.profile &&
|
|
rm ~/.bash* ~/.profile
|
|
(cd ~/git/dotfiles
|
|
ln ./.bash* ../../
|
|
ln ./.profile ../../)
|
|
fi
|