From 5861c9c776e4e6f7fe4f14fc6b15ea8d148a54ec Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 21 Apr 2025 16:15:10 +1200 Subject: [PATCH] flip command --- src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 257c148..1e35c10 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -24,9 +24,9 @@ void print_help() { std::cout << " servers NAME Show details for specific server" << std::endl; std::cout << " templates List all available templates" << std::endl; std::cout << std::endl; - std::cout << " install SERVER [SERVICE] (Re)install a specific service on a server." << std::endl; - std::cout << " backup SERVER [SERVICE] Backup a specific service on a server." << std::endl; - std::cout << " run SERVER SERVICE COMMAND Run a command on a specific service" << std::endl; + std::cout << " install SERVER [SERVICE] Install/Update service(s)." << std::endl; + std::cout << " backup SERVER [SERVICE] Backup service(s)." << std::endl; + std::cout << " COMMAND SERVER [SERVICE] Run a custom command on service(s)." << std::endl; std::cout << std::endl; std::cout << "Examples:" << std::endl; std::cout << " dropshell servers" << std::endl;