Revision 13196,
1.3 KB
checked in by tb, 25 years ago
(diff) |
New dotfiles for bash support.
|
Line | |
---|
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 | # If you want to CHANGE the login initialization sequence, revise this |
---|
29 | # .bash_login file (the one you're reading now). You may want to copy |
---|
30 | # the contents of the system-wide bash_login file as a starting point. |
---|
31 | # |
---|
32 | # WARNING: If you revise this .bash_login file, you will not |
---|
33 | # automatically get any changes that Athena may make to the |
---|
34 | # system-wide file at a later date. Be sure you know what you are |
---|
35 | # doing. |
---|
Note: See
TracBrowser
for help on using the repository browser.