DataMuseum.dk

Presents historical artifacts from the history of:

Regnecentalen RC-900

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Regnecentalen RC-900

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T e

⟦f87a970b7⟧ TextFile

    Length: 815 (0x32f)
    Types: TextFile
    Names: »etc/profile «

Derivation

└─⟦833723c12⟧ Bits:30004042/core5.imd SW95705I 386/ix Multi-user Release 1.2
    └─⟦this⟧ »etc/profile « 

TextFile

#	Copyright (c) 1984 AT&T
#	  All Rights Reserved

#	THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T
#	The copyright notice above does not evidence any
#	actual or intended publication of such source code.

#ident	"@(#)profile	1.3"
#	The profile that all logins get before using their own .profile.

trap "" 1 2 3
umask 022       # set default file creation mask
. /etc/TIMEZONE

case "$0" in
-sh | -rsh)
# calculate available disk space in root filesystem.
#       . /etc/dfspace      --- df not ready for alpha ---

# issue message of the day
	trap : 1 2 3
	if [ -s /etc/motd ] ; then cat /etc/motd; fi

	trap "" 1 2 3
	stty erase '^h' echoe

# check mailbox and news bulletins
	if mail -e
	then echo "you have mail"
	fi
	if [ $LOGNAME != root ]
	then news -n
	fi
	;;
-su)
	:
	;;
esac
export PATH;
trap 1 2 3