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

⟦3c2353182⟧ TextFile

    Length: 1181 (0x49d)
    Types: TextFile
    Notes: Uncompressed file

Derivation

└─⟦82ee0715d⟧ Bits:30004771 Terminal Driver Rel. 1.2 (3.5 inch)
└─⟦82ee0715d⟧ UNIX Filesystem
    └─⟦2afbfbc6e⟧ »RCTDR.ISC/new/etc/rci.d/profile.Z« 
    └─⟦2afbfbc6e⟧ »RCTDR.SCO/new/etc/rci.d/profile.Z« 
└─⟦ca69fd3f9⟧ Bits:30004770 Terminal Driver Rel. 1.2 (5.25 inch)
└─⟦ca69fd3f9⟧ UNIX Filesystem
    └─⟦2afbfbc6e⟧ »RCTDR.ISC/new/etc/rci.d/profile.Z« 
    └─⟦2afbfbc6e⟧ »RCTDR.SCO/new/etc/rci.d/profile.Z« 
        └─⟦this⟧ 

TextFile

#ident	"@(#)profile	1.1, RC International, 91/10/07"
#	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 | -ksh)
# set default attributes for terminal
	stty erase '^h' echoe
	stty -a | grep 'cs8' >/dev/null && stty -istrip

	if [ -z "$TERM" -o "$TERM" = unknown ]; then
		TERM=`/etc/askterm`
	fi
	if [ -z "$TERM" -o "$TERM" = unknown ] ; then
		TERM=`cat -s $HOME/.lastterm`
		while : ; do
			echo "Terminal type (default \"$TERM\") \c"
			read x
			test -n "$x" && TERM="$x"
			test -n "$TERM" && break
		done
		unset x
		echo "$TERM" > $HOME/.lastterm
	fi
	export TERM
	if test -x /usr/bin/tput ; then
		tput rs2 2>/dev/null
		tput init 2>/dev/null
	fi

# calculate available disk space in root filesystem.
#	echo ""		# skip a line
#	[ -x /usr/bin/awk ] && /etc/dfspace

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

# 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