home *** CD-ROM | disk | FTP | other *** search
- # Copyright (c) 1987, 1988 Microsoft Corporation
- # All Rights Reserved
-
- # This Module contains Proprietary Information of Microsoft
- # Corporation and should be treated as Confidential.
-
- #ident "@(#)/etc/cshrc.sl 1.1 4.0 12/08/90 22582 AT&T-USL"
-
- umask 022 # set default file creation mask
-
- # calculate available disk space in root filesystem.
- echo "" # skip a line
- /bin/sh /etc/dfspace
-
- # issue message of the day
- echo "" # skip a line
- if ( -r /etc/motd ) cat /etc/motd
-
- # set default attributes for terminal
- stty erase '^h' echoe
-
- if ( $?LOGTTY == 0) set LOGTTY = `tty`
-
- # check mailbox and news bulletins
- mail -e
- if ( $status == 0 ) echo "\nyou have mail"
- if ( $LOGNAME != root ) news -n
-