cf0cf9c783
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.
14 lines
234 B
Bash
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}
|