summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bashrc5
1 files changed, 5 insertions, 0 deletions
diff --git a/bashrc b/bashrc
index eca3ddf..79a718d 100644
--- a/bashrc
+++ b/bashrc
@@ -94,3 +94,8 @@ man() {
LESS_TERMCAP_us=$(printf "\e[33m") \
man "$@"
}
+
+# set PATH so it includes user's private bin if it exists
+if [ -d "$HOME/bin" ] ; then
+ PATH="$HOME/bin:$PATH"
+fi