From f9c97a2bd2e2de4295bdee07566ed71659bb658e Mon Sep 17 00:00:00 2001 From: FezVrasta Date: Tue, 23 Jun 2015 23:26:32 +0200 Subject: [PATCH] improved help messages --- tools/arkmanager | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/tools/arkmanager b/tools/arkmanager index 90c2d9d..17420f0 100755 --- a/tools/arkmanager +++ b/tools/arkmanager @@ -272,7 +272,20 @@ case "$1" in status) printStatus ;; + -h|--help) + echo -e "Usage: arkmanager [OPTION]\n" + echo "Option Description" + echo "start Starts the server" + echo "stop Stops the server" + echo "restart Stops the server and then starts it" + echo "install Install the ARK server files from steamcmd" + echo "update Check for a new ARK server version, if needed, stops the server, updates it, and starts it again" + echo "checkupdate Check for a new ARK server version" + echo "boradcast PLACEHOLDER, not supported yet" + echo "status Returns the status of the current ARK server instance" + ;; *) - echo "use arkmanager " + echo "arkmanager: no command specified" + echo "Try 'arkmanager -h' or 'arkmanager --help' for more information." ;; esac