Add /usr/sbin and /sbin to PATH in .bash_profile.
authorW. Trevor King <wking@drexel.edu>
Wed, 30 Nov 2011 17:23:23 +0000 (12:23 -0500)
committerW. Trevor King <wking@drexel.edu>
Wed, 30 Nov 2011 17:23:23 +0000 (12:23 -0500)
src/.bash_profile

index 6fbb82214c1b68a7fc56d7d15d312ba53e9564e3..5c790a47edc0074f9325fc5bf1ae8a8c70217c31 100644 (file)
@@ -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