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

⟦85a8f9d5e⟧ TextFile

    Length: 698 (0x2ba)
    Types: TextFile
    Notes: UNIX file
    Names: »pcserver«

Derivation

└─⟦104d96909⟧ Bits:30004765 SW95718I UNIX LAN Server Rel. 1.1
└─⟦104d96909⟧ UNIX Filesystem
    └─⟦this⟧ »LS/new/etc/init.d/pcserver« 

TextFile

#	Copyright (c) 1990 RC International
#	  All Rights Reserved

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

#ident	"@(#)pcserver.sh	1.1 - 90/02/27"

#	pcserver control
case $1 in
'start')
	if [ -x /etc/pcserver ]
	then
		umask 002	# write for owner/group
		# ulimit xxxx	# max file size in 512-byte blocks
		echo Starting UNIX PC-Server
		/etc/pcserver /etc/pcserver.log
	fi
	;;
'stop')
	PROCS=`ps -d | fgrep pcserver | cut -c1-6`
	if test -n "$PROCS"
	then	echo "$PROCS" | xargs kill
			echo UNIX PC-Server stopped
	fi
	;;
*)
	echo "usage: /etc/init.d/pcserver {start|stop}"
	;;
esac