Guest User

Untitled

a guest
Dec 5th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. # Begin ~/.bash_profile
  2. # Written for Beyond Linux From Scratch
  3. # by James Robertson <jameswrobertson@earthlink.net>
  4. # updated by Bruce Dubbs <bdubbs@linuxfromscratch.org>
  5.  
  6. # Personal environment variables and startup programs.
  7.  
  8. # Personal aliases and functions should go in ~/.bashrc. System wide
  9. # environment variables and startup programs are in /etc/profile.
  10. # System wide aliases and functions are in /etc/bashrc.
  11.  
  12. if [ -f "$HOME/.bashrc" ] ; then
  13. source $HOME/.bashrc
  14. fi
  15.  
  16. if [ -d "$HOME/bin" ] ; then
  17. pathprepend $HOME/bin
  18. fi
  19.  
  20. # Having . in the PATH is dangerous
  21. #if [ $EUID -gt 99 ]; then
  22. # pathappend .
  23. #fi
  24.  
  25. # End ~/.bash_profile
Add Comment
Please, Sign In to add comment