Root/
| 1 | # vim:filetype=sh |
| 2 | # .bash_profile, loaded on login shells, after /etc/profile |
| 3 | # and instead of .bashrc |
| 4 | |
| 5 | # Get the aliases and functions |
| 6 | if [ -f ~/.bashrc ]; then |
| 7 | . ~/.bashrc |
| 8 | fi |
| 9 | |
| 10 | export PATH |
| 11 | unset USERNAME |
| 12 | |
| 13 | echo |
| 14 | date '+%a %d %b %Y %T' |
| 15 | echo |
| 16 | if [ -f ~/.bash_desc ]; then |
| 17 | . ~/.bash_desc |
| 18 | echo |
| 19 | fi |
| 20 | last -4 $USER |
| 21 | echo |
| 22 |
