#!/bin/sh

case "$1" in
    "show"|"")
        shift
        exec conics-show "$@"
        ;;
    *)
        exec conics-cmd "$@"
        ;;
esac
