Advertisement
Guest User

Untitled

a guest
Sep 20th, 2014
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. # /etc/profile
  2.  
  3. #Set our umask
  4. umask 022
  5.  
  6. # Set our default path
  7. PATH="/usr/local/sbin:/usr/local/bin:/usr/bin"
  8. export PATH
  9.  
  10. # Load profiles from /etc/profile.d
  11. if test -d /etc/profile.d/; then
  12. for profile in /etc/profile.d/*.sh; do
  13. test -r "$profile" && . "$profile"
  14. done
  15. unset profile
  16. fi
  17.  
  18. # Source global bash config
  19. if test "$PS1" && test "$BASH" && test -r /etc/bash.bashrc; then
  20. . /etc/bash.bashrc
  21. fi
  22.  
  23. # Termcap is outdated, old, and crusty, kill it.
  24. unset TERMCAP
  25.  
  26. # Man is much better than us at figuring this out
  27. unset MANPATH
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement