# shellcheck shell=dash

xrc:mod:lib     uhb     util    host/_index     ip/_index

___x_cmd_uhb___main(){
    [ "$#" -gt 0 ] ||   set -- host

    local op="$1";      shift
    case "$op" in
        -h|--help)      ___x_cmd help -m uhb "$@"
                        return 0  ;;

        host|ip)        ___x_cmd_uhb_"$op" "$@" ;;
        *)              ;;
    esac
}
