From e391ecd14e8c0f153d46e11213e0effc662ff3b8 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Wed, 26 Aug 2009 11:31:24 +0200 Subject: [PATCH] contrib/cussh.pl: Add synopsis for specific commands. You can now do HELP FLUSH to get information about the FLUSH command. --- contrib/cussh.pl | 48 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 47 insertions(+), 1 deletion(-) diff --git a/contrib/cussh.pl b/contrib/cussh.pl index 7357ad78..320bf73b 100755 --- a/contrib/cussh.pl +++ b/contrib/cussh.pl @@ -186,7 +186,14 @@ sub putid { =cut sub cmd_help { - print < < < [ ...] + +Submits a value to the daemon. +HELP + getval => < + +Retrieves the current value or values from the daemon. +HELP + flush => <] [timeout=] [identifier=] [...] + +Sends a FLUSH command to the daemon. +HELP + listval => < < [...] message= + +Sends a notifications message to the daemon. +HELP + ); + + if (!$cmd) + { + $cmd = 'help'; + } + if (!exists ($text{$cmd})) + { + print STDOUT "Unknown command: " . uc ($cmd) . "\n\n"; + $cmd = 'help'; + } + + print STDOUT $text{$cmd}; + return 1; } # cmd_help -- 2.11.0