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

⟦b9108b7d4⟧ TextFile

    Length: 1231 (0x4cf)
    Types: TextFile
    Notes: UNIX file
    Names: »bldmcs«

Derivation

└─⟦b1d6695d7⟧ Bits:30004155/sitdisk.imd SW95713I 386/ix Software Development System Rel. 2.0
└─⟦b1d6695d7⟧ UNIX Filesystem
    └─⟦this⟧ »sitls/new/usr/subsets/tools/bldmcs« 

TextFile

#
#  Copyrighted as an unpublished work.
#  (c) Copyright 1987 INTERACTIVE Systems Corporation
#  All rights reserved.
#
#  RESTRICTED RIGHTS
#
#  These programs are supplied under a license.  They may be used,
#  disclosed, and/or copied only as permitted under such license
#  agreement.  Any copy must contain the above copyright notice and
#  this restricted rights notice.  Use, copying, and/or disclosure
#  of the programs is strictly prohibited unless otherwise provided
#  in the license agreement.
#

trap 'rm -f $TMP1 $TMP2 ; exit' 1 2 3 4 5 6 7 8 9 10 12 13 14 15



TMP1=/tmp/rel1.$$
TMP2=/tmp/rel2.$$

ROOT=${ROOT:="NOT SET"}
if [ "$ROOT" = "NOT SET" ]
then
	echo "▶07◀ROOT $ROOT"
	exit
else
	echo "ROOT = $ROOT"
fi

i=$1
VER386IX=`uname -a | cut -d" " -f3`
# Set ??.name to new version
PKGNAME=`cat NAME`
VER=`cat VERSION`
echo "$PKGNAME-Version $VER" >$i.name

# Set ??.name in $ROOT/usr/options/??.name
echo "$PKGNAME-Version $VER" >$ROOT/usr/options/$i.name

sed 's/^\///' FILELIST.$i | sort >$TMP1

cd $ROOT

file -f $TMP1 | grep 'iAPX 386 executable' | cut -f1 -d':' >$TMP2

cat $TMP2 | while read name
do
	fi=`basename $name`
	mcs -d -a "@(#) $1:$fi  386/ix $VER386IX - Version $VER" $name
done
rm -f $TMP1 $TMP2