This commit is contained in:
Stephan Raabe
2023-11-10 21:12:15 +00:00
parent eca6b8659a
commit ea2a6adbf0
137 changed files with 2941 additions and 4897 deletions
+19
View File
@@ -0,0 +1,19 @@
# ------------------------------------------------------
# Install .bashrc
# ------------------------------------------------------
echo "-> Install .bashrc"
echo "PLEASE BACKUP YOUR .bashrc file in case you want to keep your local configuration and aliases."
while true; do
read -p "Do you want to install the .bashrc file? (Yy/Nn): " yn
case $yn in
[Yy]* )
_installSymLink .bashrc ~/.bashrc ~/dotfiles/.bashrc ~/.bashrc
break;;
[Nn]* )
echo "Installation skipped."
break;;
* ) echo "Please answer yes or no.";;
esac
done
echo ""