# shellcheck shell=dash
___x_cmd log init btop
xrc:mod:lib     btop        __cmd

___x_cmd_btop___main(){
    [ "$#" -gt 0 ] ||  {
        ___x_cmd_btop___cmd "$@"
        return
    }

    local op="$1";      shift
    case "$op" in
        -h|--help)      ___x_cmd help -m btop ;;
        --|--cmd)       ___x_cmd_btop___cmd       "$@" ;;
        *)              ___x_cmd_btop___cmd "$op" "$@" ;;
    esac
}
