[13196] | 1 | # Prototype user .bashrc file |
---|
| 2 | # |
---|
| 3 | # $Id: dot.bashrc,v 1.1 1999-06-11 15:28:10 tb Exp $ |
---|
| 4 | |
---|
| 5 | # This file sources a system-wide bashrc file, which: |
---|
| 6 | # - sets up standard environment variables |
---|
| 7 | # - sources user file ~/.bash_environment, if it exists |
---|
| 8 | # - sets standard path |
---|
| 9 | # - sets up standard shell variables, aliases, etc. |
---|
| 10 | # - source user file ~/.bashrc.mine, if it exists |
---|
| 11 | |
---|
| 12 | initdir=/usr/athena/lib/init |
---|
| 13 | |
---|
| 14 | if [ -r $initdir/bashrc ]; then |
---|
| 15 | . $initdir/bashrc |
---|
| 16 | else |
---|
| 17 | if [ -n "$PS1" ]; then |
---|
| 18 | echo "Warning: System-wide initialization files not found." |
---|
| 19 | echo "Shell initialization has not been performed." |
---|
| 20 | stty sane |
---|
| 21 | fi |
---|
| 22 | fi |
---|
| 23 | |
---|
| 24 | |
---|
| 25 | # If you want to ADJUST the bash initialization sequence, create any of |
---|
| 26 | # the following files (as appropriate) in your home directory, with commands |
---|
| 27 | # to achieve the effect listed: |
---|
| 28 | # |
---|
| 29 | # .bash_environment - setup session environment (set environmental |
---|
| 30 | # variables, attach lockers, etc.) |
---|
| 31 | # .bashrc.mine - setup bash environment (set shell variables, aliases, |
---|
| 32 | # unset system defaults, etc.) |
---|
| 33 | |
---|
[25372] | 34 | # In most cases, you will never need to edit this file. All the |
---|
| 35 | # customizations you could want to make can be made by editing one |
---|
| 36 | # of the user dotfiles, such as ~/.bashrc.mine, ~/.bash_environment, or |
---|
| 37 | # ~/.startup.tty. |
---|
[13196] | 38 | # |
---|
| 39 | # WARNING: If you revise this .bashrc file, you will not automatically |
---|
| 40 | # get any changes that Athena may make to the system-wide file at a |
---|
| 41 | # later date. Be sure you know what you are doing. |
---|