
___x_cmd_update(){
    case "$1" in
        -h|--help)      ___x_cmd help -m x-cmd update; return 0 ;;
    esac

    if [ "$#" -eq 0 ]; then
        ___x_cmd pkg update
    else
        ___x_cmd hub file update "$@"
    fi
}


