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

⟦96da246cc⟧ TextFile

    Length: 445 (0x1bd)
    Types: TextFile
    Notes: UNIX file
    Names: »pcswho«

Derivation

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

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	"@(#)pcswho	1.1 - 90/02/28"

ps -df | grep "?.\{10,\}pcserver" | \
while read i
do
	set $i
	if [ $3 != 1 ]
	then
		if [ $6 != \? ]
		then
			echo $1 '\t' $2 '\t' $5 $6
		else
			echo $1 '\t' $2 '\t' $5
		fi
	fi
done