From 6c33d7e66d3110cc59f0dc22638763f894f9c364 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 21 Feb 2012 11:35:45 +1300 Subject: Added bash files, wrote installation script. --- bash/bash_profile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 bash/bash_profile (limited to 'bash/bash_profile') diff --git a/bash/bash_profile b/bash/bash_profile new file mode 100644 index 00000000..bae38cfa --- /dev/null +++ b/bash/bash_profile @@ -0,0 +1,12 @@ +# If running Bash, source .bashrc. +if [ -n "$BASH_VERSION" ]; then + if [ -f "$HOME/.bashrc" ]; then + . "$HOME/.bashrc" + fi +fi + +# Add ~/bin to the path if it exists. +if [ -d "$HOME/bin" ]; then + PATH="$HOME/bin:$PATH" +fi + -- cgit v1.2.3