# shellcheck shell=dash

xrc:mod:lib shim

___x_cmd_shim___main(){
    [ "$#" -gt 0 ] ||   set -- -h

    local op="$1";      shift
    case "$op" in
        gen|cat)
                        ___x_cmd_shim_"$op" "$@" ;;
        -h|--help)      x help -m shim;   return ;;

    esac
}
