diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 1998-12-17 02:16:37 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 1998-12-17 02:16:37 +0000 |
commit | e97ea4d133157d4547ce36a8e719cc7e943cf1a0 (patch) | |
tree | ec8b0816fcc3542b271af00dc72cacfe29672978 /distrib/mvme88k/runlist.sh | |
parent | 327a074ea6a95c4237f9b9ae8cadd4e376801bdd (diff) |
commit to add upport for mvme88k.
Diffstat (limited to 'distrib/mvme88k/runlist.sh')
-rw-r--r-- | distrib/mvme88k/runlist.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/distrib/mvme88k/runlist.sh b/distrib/mvme88k/runlist.sh new file mode 100644 index 00000000000..e599f45d301 --- /dev/null +++ b/distrib/mvme88k/runlist.sh @@ -0,0 +1,13 @@ +# $OpenBSD: runlist.sh,v 1.1 1998/12/17 02:16:30 smurph Exp $ + +if [ "X$1" = "X-d" ]; then + SHELLCMD=cat + shift +else + SHELLCMD="sh" +fi + +( while [ "X$1" != "X" ]; do + cat $1 + shift +done ) | awk -f ${TOPDIR}/list2sh.awk | ${SHELLCMD} |