Advertisement
timcowchip

/etc/profile

Jan 31st, 2019
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. #
  2. # /etc/profile: system-wide defaults for bash(1) login shells
  3. #
  4.  
  5. if [ "$UID" = "0" ]; then
  6. export PATH="/sbin:/usr/sbin:/opt/sbin:/bin:/usr/bin:/opt/bin"
  7. else
  8. export PATH="/bin:/usr/bin:/opt/bin"
  9. fi
  10.  
  11. if [ ! -f ~/.inputrc ]; then
  12. export INPUTRC="/etc/inputrc"
  13. fi
  14.  
  15. export LESS="-R"
  16. export PS1="timcowchip@gorge.net: "
  17. export PS2="chris@opensuse.us: "
  18. export ENV=/home/timcowchip/.dashrc
  19. export LANGUAGE="en_US.UTF-8"
  20. export LC_ALL=en_AU.UTF-8
  21. export LANG=en_US.utf8
  22.  
  23. umask 022
  24.  
  25. # End of file
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement