source: trunk/debathena/debathena/dotfiles/dot.cshrc @ 24011

Revision 24011, 1.8 KB checked in by broder, 15 years ago (diff)
In dotfiles: * Stop setting umask in dotfiles. (Trac: #368) Patch by Nancy Ouyang
Line 
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, OR sources user file ~/.path, if it exists
9#      - sets up standard C shell variables, aliases, etc.
10#      - source user file ~/.cshrc.mine, if it exists
11
12set initdir=/usr/athena/lib/init
13
14if (-r $initdir/cshrc) then
15        source $initdir/cshrc
16else
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
22endif
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#      .path        - set default search path (you can refer to the shell
32#                     variable $athena_path, which lists athena default path,
33#                     when you set path, e.g., "set path=(. $athena_path)")
34#      .cshrc.mine  - set up C shell environment (set shell variables,
35#                     aliases, unset system defaults, etc.)
36
37# If you want to CHANGE the C shell initialization sequence, revise
38# this .cshrc file (the one you're reading now). You may want to copy
39# the contents of the system-wide cshrc file as a starting point.
40#
41# WARNING: If you revise this .cshrc file, you will not automatically
42# get any changes that Athena may make to the system-wide file at a
43# later date. Be sure you know what you are doing.
Note: See TracBrowser for help on using the repository browser.