summaryrefslogtreecommitdiff
path: root/distrib/common/runlist.sh
blob: ac5b5071ecd7b8beed30fc73b474e154a270afec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#	$NetBSD: runlist.sh,v 1.1 2009/09/18 09:24:59 abs 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 ${NETBSDSRCDIR}/distrib/common/list2sh.awk | ${SHELLCMD}