#!/usr/bin/env bash
cd /usr/share/wig

if [[ "$1" = "" ]]; then
    ./wig.py -h
else
    ./wig.py "$@"
fi
