#!/bin/sh
# Wrapper script so that help2man can read wscat's output correctly.
case "$1" in
--help)
	bin/wscat "$@" | cut -b3- | tail -n+2
	;;
*)
	bin/wscat "$@"
	;;
esac
