From 08904cfa6e5c7aa8830aae7a7bf003c17ad6c0ca Mon Sep 17 00:00:00 2001 From: Jake Smith Date: Tue, 3 Oct 2023 16:08:40 +0100 Subject: [PATCH] HPCC-30419 Add url-secret-name to ecl usage Signed-off-by: Jake Smith --- ecl/eclcmd/eclcmd_shell.cpp | 37 +++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/ecl/eclcmd/eclcmd_shell.cpp b/ecl/eclcmd/eclcmd_shell.cpp index d6181ea32de..6627d5af558 100644 --- a/ecl/eclcmd/eclcmd_shell.cpp +++ b/ecl/eclcmd/eclcmd_shell.cpp @@ -205,24 +205,25 @@ void EclCMDShell::usage() fprintf(stdout,"\nUsage:\n" " ecl [--version] []\n\n" "Commonly used commands:\n" - " deploy create a workunit from an ecl file, archive, or dll\n" - " publish add a workunit to a query set\n" - " unpublish remove a query from a query set\n" - " run run the given ecl file, archive, dll, wuid, or query\n" - " results retrieve the results for an existing workunit\n" - " activate activate a published query\n" - " deactivate deactivate the given query alias name\n" - " queries show or manipulate queries and querysets\n" - " packagemap manage HPCC packagemaps\n" - " bundle manage ECL bundles\n" - " roxie commands specific to roxie clusters\n" - " abort abort workunit(s) for WUID or job name\n" - " status show workunit(s) current status for WUID or job name\n" - " getname provide job name from WUID\n" - " getwuid provide WUID from job name\n" - " zapgen provide ZAP file from WUID\n" - " sign add digital signature to an ecl file or a text file\n" - " listkeyuid lists all the key user IDs that can be used in the sign command\n" + " deploy create a workunit from an ecl file, archive, or dll\n" + " publish add a workunit to a query set\n" + " unpublish remove a query from a query set\n" + " run run the given ecl file, archive, dll, wuid, or query\n" + " results retrieve the results for an existing workunit\n" + " activate activate a published query\n" + " deactivate deactivate the given query alias name\n" + " queries show or manipulate queries and querysets\n" + " packagemap manage HPCC packagemaps\n" + " bundle manage ECL bundles\n" + " roxie commands specific to roxie clusters\n" + " abort abort workunit(s) for WUID or job name\n" + " status show workunit(s) current status for WUID or job name\n" + " getname provide job name from WUID\n" + " getwuid provide WUID from job name\n" + " zapgen provide ZAP file from WUID\n" + " sign add digital signature to an ecl file or a text file\n" + " listkeyuid lists all the key user IDs that can be used in the sign command\n" + " url-secret-name Generate a secret name from a url for automatic url mapping\n" "\nRun 'ecl help ' for more information on a specific command\n\n" ); }