source: trunk/debathena/debathena/dotfiles/dot.login @ 13167

Revision 13167, 1.3 KB checked in by danw, 25 years ago (diff)
grammar, sanity, and other fixes
Line 
1# Prototype user .login file
2#
3# $Id: dot.login,v 1.16 1999-06-03 14:52:56 danw Exp $
4
5# This file sources a system-wide .login file, which:
6#      - presumes that the .cshrc file has been sourced
7#      - performs standard setup appropriate for a tty session
8#      - runs standard startup activities (e.g., checking mail)
9#      - sources user file ~/.startup.tty, if it exists
10
11set initdir=/usr/athena/lib/init
12
13if (-r $initdir/login) then
14        source $initdir/login
15else
16        echo "Warning: System-wide initialization files not found."
17        echo "Login initialization has not been performed."
18endif
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 .cshrc file.
27
28# If you want to CHANGE the login initialization sequence, revise this .login
29# file (the one you're reading now).  You may want to copy the contents of
30# the system-wide login file as a starting point.
31#
32# WARNING: If you revise this .login file, you will not automatically
33# get any changes that Athena may make to the system-wide file at a
34# later date. Be sure you know what you are doing.
Note: See TracBrowser for help on using the repository browser.