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

⟦2cf1afe1b⟧ TextFile

    Length: 1077 (0x435)
    Types: TextFile
    Notes: UNIX file
    Names: »bldrlist«

Derivation

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

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.
#

if [ $# != 1 ]
then
	echo Usage: $0 packagename
	exit 1
fi
pkg=$1
rm -f Rlist.$pkg
# This script was originally more sophisticated
# but would cause directories to be removed by mistake
# if not all available subsets were generated from the
# same binary tree
# Therefor we will only remove files  not directories
ROOT=${ROOT:-/}
for file in `cat FILELIST.$pkg`
do
	if [ -f $ROOT$file ]
	then
	echo $file >> Rlist.$pkg
	fi
done
echo /usr/options/$pkg.name >>Rlist.$pkg
grep -v "/etc/drivers" Rlist.$pkg | sort | uniq >br.rl.$$
mv br.rl.$$ Rlist.$pkg
rm -f  br.rl.$$