From b5fc3d34eeb92a4abdf5395455f1ebd3f98099eb Mon Sep 17 00:00:00 2001 From: Tony Tkacik Date: Wed, 19 Feb 2014 14:30:49 +0100 Subject: [PATCH] Added support for user specific bin directory. Signed-off-by: Tony Tkacik --- bashrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bashrc b/bashrc index b40040d..8b9a66b 100755 --- a/bashrc +++ b/bashrc @@ -111,6 +111,10 @@ if [ -f ~/.bash_local_variables ]; then . ~/.bash_local_variables fi +if [ -d ~/bin ]; then + PATH="$PATH:~/bin" +fi + # enable programmable completion features (you don't need to enable # this, if it's already enabled in /etc/bash.bashrc and /etc/profile # sources /etc/bash.bashrc).