NetBSD/distrib/acorn32/ramdisk/runlist.sh
reinoud cf0cf9c783 Create initial distribution directory for NetBSD/acorn32. There might be
some unused stuff in there like the floppies but i've left them here for
completion. They might be interesting to build one day too.
2002-01-25 15:28:41 +00:00

14 lines
234 B
Bash

# $NetBSD: runlist.sh,v 1.1 2002/01/25 15:28:48 reinoud 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}