From 028555aecc93a8f41644db4af933ef2efe3d35d4 Mon Sep 17 00:00:00 2001 From: tonjo Date: Sat, 3 Mar 2018 10:21:02 +0100 Subject: [PATCH] Added help for wildcard on get --- session/session_core_handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/session/session_core_handlers.go b/session/session_core_handlers.go index 9661e556..3cd5ecd5 100644 --- a/session/session_core_handlers.go +++ b/session/session_core_handlers.go @@ -274,7 +274,7 @@ func (s *Session) registerCoreHandlers() { s.addHandler(NewCommandHandler("get NAME", "^get\\s+(.+)", - "Get the value of variable NAME, use * as a wildcard.", + "Get the value of variable NAME, use * alone for all, or NAME* as a wildcard.", s.getHandler), readline.PcItem("get", readline.PcItemDynamic(func(prefix string) []string { prefix = core.Trim(prefix[3:])