1 | # Prototype user .cshrc file |
---|
2 | # |
---|
3 | # $Id: dot.cshrc,v 1.15 1999-06-03 14:52:55 danw Exp $ |
---|
4 | |
---|
5 | # This file sources a system-wide cshrc file, which: |
---|
6 | # - sets up standard environment variables |
---|
7 | # - sources user file ~/.environment, if it exists |
---|
8 | # - sets standard path |
---|
9 | # - sets up standard C shell variables, aliases, etc. |
---|
10 | # - source user file ~/.cshrc.mine, if it exists |
---|
11 | |
---|
12 | set initdir=/usr/athena/lib/init |
---|
13 | |
---|
14 | if (-r $initdir/cshrc) then |
---|
15 | source $initdir/cshrc |
---|
16 | else |
---|
17 | if ($?prompt) then # Don't echo if noninteractive |
---|
18 | echo "Warning: System-wide initialization files not found." |
---|
19 | echo "C Shell initialization has not been performed." |
---|
20 | stty sane |
---|
21 | endif |
---|
22 | endif |
---|
23 | |
---|
24 | |
---|
25 | # If you want to ADJUST the C shell 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 | # .environment - set up session environment (set environmental |
---|
30 | # variables, attach lockers, etc.) |
---|
31 | # .cshrc.mine - set up C shell environment (set shell variables, |
---|
32 | # aliases, unset system defaults, etc.) |
---|
33 | |
---|
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 ~/.cshrc.mine, ~/.environment, |
---|
37 | # ~/.startup.tty or ~/.startup.X |
---|
38 | # |
---|
39 | # WARNING: If you revise this .cshrc 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. |
---|