NetBSD/distrib/mipsco/runlist.sh

14 lines
230 B
Bash

# $NetBSD: runlist.sh,v 1.1 2001/02/19 07:45:38 wdk 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}