Started building an install script

This commit is contained in:
Josh Sherman 2011-12-04 14:39:42 -05:00
parent 97f3e684eb
commit db9d80b96b

18
install.sh Executable file
View file

@ -0,0 +1,18 @@
#!/bin/bash
# TODO check if fortune-mod is installed and if not, install it
# Clears out the old .bashrc
if [ -f ~/.bashrc ];
then
rm ~/.bashrc
fi
# Grabs the skeleton .bashrc
cp /etc/skel/.bashrc ~/.bashrc
# Appends the custom .bashrc file
echo "
if [ -f `pwd`/bash.bashrc ] && ! shopt -oq posix; then
. `pwd`/bash.bashrc
fi" >> ~/.bashrc