summaryrefslogtreecommitdiff
path: root/init.sh
diff options
context:
space:
mode:
Diffstat (limited to 'init.sh')
-rwxr-xr-xinit.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/init.sh b/init.sh
new file mode 100755
index 0000000..558db0e
--- /dev/null
+++ b/init.sh
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+NC='\e[0m'
+RED='\e[1;31m'
+GREEN='\e[1;32m'
+
+files="bash_profile bashrc vimrc"
+
+for file in $files; do
+ cp $file $HOME/.$file
+done
+
+echo -e "${GREEN}==>${NC} ...done"
+echo -e "${RED}==>${NC} Don't forget to ${GREEN}$ source .bashrc!${RED}"