source: trunk/packs/dotfiles/dot.login @ 5063

Revision 5063, 1.3 KB checked in by probe, 33 years ago (diff)
Removed 6.3 compatibility
Line 
1# Prototype user .login file
2#
3# $Id: dot.login,v 1.15 1991-06-08 18:40:59 probe Exp $
4
5# This file sources a system-wide .login file, which:
6#      - presumes that the .cshrc file has been sourced
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
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 Project Athena may make to the system-wide file at
34# a later date.  Be sure you know what you are doing.
Note: See TracBrowser for help on using the repository browser.