From a5559787f7062e184c353b821ad39c8774ce5d91 Mon Sep 17 00:00:00 2001 From: Florent de Lamotte Date: Thu, 30 Oct 2025 17:34:12 +0100 Subject: [PATCH] / will now do the same as $ ... --- src/meshcore_cli/meshcore_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meshcore_cli/meshcore_cli.py b/src/meshcore_cli/meshcore_cli.py index 4343cf1..511ae7b 100644 --- a/src/meshcore_cli/meshcore_cli.py +++ b/src/meshcore_cli/meshcore_cli.py @@ -681,7 +681,7 @@ Line starting with \"$\" or \".\" will issue a meshcli command. pass # raw meshcli command as on command line - elif line.startswith("$") : + elif line.startswith("$") or line.startswith("/") : args = shlex.split(line[1:]) await process_cmds(mc, args)