blob: 7ad42c8b23c8e8113d2bd69562868f7b4e6e3d27 [file] [log] [blame]
#!/bin/bash
#
# Utility functions, used by demo.sh and regtest.sh.
banner() {
echo
echo "----- $@"
echo
}
log() {
echo 1>&2 "$@"
}
die() {
log "$0: $@"
exit 1
}