#!/bin/sh
# wrapper to invoke damo with sanitized help output
python3 -B ../../damo $@ \
	| sed '/^usage:/d' \
	| sed 's/^options:/Options:/' \
	| sed 's/^command:/*Commands*/'

