From: W. Trevor King Date: Wed, 30 Nov 2011 17:23:23 +0000 (-0500) Subject: Add /usr/sbin and /sbin to PATH in .bash_profile. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8e4256695e4b65b5db0b63e4a2ae94bbaa729214;p=dotfiles-public.git Add /usr/sbin and /sbin to PATH in .bash_profile. --- diff --git a/src/.bash_profile b/src/.bash_profile index 6fbb822..5c790a4 100644 --- a/src/.bash_profile +++ b/src/.bash_profile @@ -2,7 +2,7 @@ # set PATH so it includes user's private bin if it exists if [ -d ~/bin ]; then - PATH=~/bin:"${PATH}" + PATH=~/bin:"${PATH}":/usr/sbin:/sbin fi # The following line runs your .bashrc and is recommended by the bash