#!/bin/sh
set -e
for f in j1939*.sh; do
echo "##############################################"
echo "run: $f"
./$f "${@}"
echo "done: $f"
done