570c5f86ef
installing from FTP or NFS server, tape, or CD-ROM, although tape and CD-ROM are currently untested. Hooks for placing disklabels on additional disks are there, but meat is yet to be implemented.
14 lines
234 B
Bash
14 lines
234 B
Bash
# $NetBSD: runlist.sh,v 1.1 1995/10/03 22:47:57 thorpej Exp $
|
|
|
|
if [ "X$1" = "X-d" ]; then
|
|
SHELLCMD=cat
|
|
shift
|
|
else
|
|
SHELLCMD="sh -e"
|
|
fi
|
|
|
|
( while [ "X$1" != "X" ]; do
|
|
cat $1
|
|
shift
|
|
done ) | awk -f ${TOPDIR}/list2sh.awk | ${SHELLCMD}
|