From 403897b2e02cfa500a935052e93ef60ae1b98cc4 Mon Sep 17 00:00:00 2001 From: Scott Wallace Date: Thu, 26 Mar 2015 18:12:00 +0000 Subject: [PATCH] Add the local user's bin/ directory to the front of PATH. --- .bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index 996f5a0..ed9bc12 100644 --- a/.bashrc +++ b/.bashrc @@ -14,7 +14,7 @@ export LESS="-qr" #-------------------------------------------------------------------------------- # Update the path with local overrides #-------------------------------------------------------------------------------- -export PATH=/usr/local/bin:/usr/local/sbin:${PATH} +export PATH=~/bin:/usr/local/bin:/usr/local/sbin:${PATH} #-------------------------------------------------------------------------------- #--------------------------------------------------------------------------------