summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2016-03-07 18:12:15 (EST)
committer P. J. McDermott <pj@pehjota.net>2016-03-07 18:12:15 (EST)
commitbe7e5446e1c8e448e4a91000b95064a51547d68b (patch)
treee15e7a0d8e552e304fb1de0b29253ec738d153c6
parent6e7ad069e1f5e51c6a25b546b6e5fe121f38acd1 (diff)
downloadbash-be7e5446e1c8e448e4a91000b95064a51547d68b.zip
bash-be7e5446e1c8e448e4a91000b95064a51547d68b.tar.gz
bash-be7e5446e1c8e448e4a91000b95064a51547d68b.tar.bz2
.bashrc: Set PATH
-rw-r--r--.bashrc5
1 files changed, 5 insertions, 0 deletions
diff --git a/.bashrc b/.bashrc
index c5f7182..5e51d75 100644
--- a/.bashrc
+++ b/.bashrc
@@ -1,6 +1,11 @@
+PATH='/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games'
+PATH="${HOME}/bin:${PATH}"
+
# Interactive shells only beyond this point
[ "${PS1+set}" = 'set' ] || return
+PATH="${HOME}/ibin:${PATH}"
+
# Bash history
HISTSIZE=1000
HISTFILESIZE=1000