No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

profile 368B

1234567891011121314151617181920
  1. export PATH=/bin:/sbin:/usr/bin:/usr/sbin
  2. if [ "$PS1" ]; then
  3. if [ "`id -u`" -eq 0 ]; then
  4. export PS1='\e[0;31m[\u@\h:\w]# \e[m'
  5. else
  6. export PS1='\e[0;34m[\u@\h:\w]$ \e[m'
  7. fi
  8. fi
  9. export PAGER='/bin/more '
  10. export EDITOR='/bin/vi'
  11. # Source configuration files from /etc/profile.d
  12. for i in /etc/profile.d/*.sh ; do
  13. if [ -r "$i" ]; then
  14. . $i
  15. fi
  16. unset i
  17. done