c71d8c144e
Note: - `list' was more-or-less arbitrarily split into MD & MI parts. - the `crunch' configuration file is generated from `list's with the `makeconf' awk-script. - Makefile assumes there's a `../<arch>/miniroot' directory with MI configuration files.
14 lines
229 B
Bash
14 lines
229 B
Bash
# $NetBSD: runlist.sh,v 1.1 1995/12/18 22:47:38 pk 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 ${CURDIR}/list2sh.awk | ${SHELLCMD}
|