
# ssh connect abc-server cde-server abd-server
___x_cmd_ssh___connect(){
    [ $# -gt 0 ] || set -- --app

    local op="$1";  shift
    case "$op" in
        --app)          ___x_cmd_ssh___connect___app  "$@" ;;
        *)              x:error "Unsupported op ==> $op"  "$@" ;;
    esac
}
