diff options
Diffstat (limited to 'distrib/macppc/runlist.sh')
-rw-r--r-- | distrib/macppc/runlist.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/distrib/macppc/runlist.sh b/distrib/macppc/runlist.sh new file mode 100644 index 00000000000..24c15e5ebb0 --- /dev/null +++ b/distrib/macppc/runlist.sh @@ -0,0 +1,13 @@ +# $OpenBSD: runlist.sh,v 1.1 2001/09/01 16:47:03 drahn 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} |