1 | # Prototype user .bash_login file |
---|
2 | # |
---|
3 | # $Id: dot.bash_login,v 1.1 1999-06-11 15:28:09 tb Exp $ |
---|
4 | |
---|
5 | # This file sources a system-wide .bash_login file, which: |
---|
6 | # - sources the ~/.bashrc file |
---|
7 | # - performs standard setups appropriate for tty session |
---|
8 | # - runs standard startup activities (e.g., check mail) |
---|
9 | # - source user file ~/.startup.tty, if it exists |
---|
10 | |
---|
11 | initdir=/usr/athena/lib/init |
---|
12 | |
---|
13 | if [ -r $initdir/bash_login ]; then |
---|
14 | . $initdir/bash_login |
---|
15 | else |
---|
16 | echo "Warning: System-wide initialization files not found." |
---|
17 | echo "Login initialization has not been performed." |
---|
18 | fi |
---|
19 | |
---|
20 | |
---|
21 | # If you want to ADJUST the login initialization sequence, create a |
---|
22 | # .startup.tty file in your home directory, with commands to run activities |
---|
23 | # once the environment has been set up (znol, emacs, etc.). |
---|
24 | |
---|
25 | # To adjust the environment initialization sequence, see the instructions in |
---|
26 | # the .bashrc file. |
---|
27 | |
---|
28 | # In most cases, you will never need to edit this file. All the |
---|
29 | # customizations you could want to make can be made by editing one |
---|
30 | # of the user dotfiles, such as ~/.bashrc.mine, ~/.bash_environment, or |
---|
31 | # ~/.startup.tty. |
---|
32 | # |
---|
33 | # WARNING: If you revise this .bash_login file, you will not |
---|
34 | # automatically get any changes that Athena may make to the |
---|
35 | # system-wide file at a later date. Be sure you know what you are |
---|
36 | # doing. |
---|