profile 274 B

12345678910111213141516171819
  1. export PATH=@PATH@
  2. if [ "$PS1" ]; then
  3. if [ "`id -u`" -eq 0 ]; then
  4. export PS1='# '
  5. else
  6. export PS1='$ '
  7. fi
  8. fi
  9. export EDITOR='/bin/vi'
  10. # Source configuration files from /etc/profile.d
  11. for i in /etc/profile.d/*.sh ; do
  12. if [ -r "$i" ]; then
  13. . $i
  14. fi
  15. done
  16. unset i