From e54790f8a3fb96a229e2945b2965a7162627f432 Mon Sep 17 00:00:00 2001 From: Mika Suomalainen Date: Sun, 14 Aug 2011 13:29:44 +0300 Subject: [PATCH] Added install.sh It installs these files. WARNING! Read what the install.sh file does, so you will avoid unpleasant surprises. --- install.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 install.sh diff --git a/install.sh b/install.sh new file mode 100755 index 00000000..1ae966dd --- /dev/null +++ b/install.sh @@ -0,0 +1,16 @@ +#!/bin/bash +# This script "installs" files in this gist. +# WARNING: This will overwrite your .bashrc, .bash_aliases and .bash_profile !!!!!! +# NOTICE: For this script to work, you must cd to folder where this script is. +echo "Installing bash_aliases." +cat bash_aliases > ~/.bash_aliases +echo "bash_aliases installed." +echo "Installing bash_profile" +cat bash_profile > ~/.bash_profile +echo "bash_profile installed." +echo "Installing bashrc." +cat bashrc > ~/.bashrc +echo "bashrc installed." +echo "Sourcing bashrc..." +source ~/.bashrc +echo "Installation has completed."