From 7ea751f78e04f94e96b8b5c4dd51146283bfb28d Mon Sep 17 00:00:00 2001 From: Rob Swindell <rob@synchro.net> Date: Sun, 6 Sep 2020 13:15:08 -0700 Subject: [PATCH] Add more cmd-line specifiers (e.g. %g, %j, %k) to online help. --- src/sbbs3/scfg/scfg.h | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/src/sbbs3/scfg/scfg.h b/src/sbbs3/scfg/scfg.h index 101c5fa2f9..bd3f89ec62 100644 --- a/src/sbbs3/scfg/scfg.h +++ b/src/sbbs3/scfg/scfg.h @@ -50,18 +50,22 @@ #define SCFG_CMDLINE_SPEC_HELP "\n" \ "The following is a list of commonly-used command-line specifiers:\n" \ "\n" \ - " `%f` The path/filename of the file to act upon or door/game drop file\n" \ + " `%f` The path/filename of the file to act upon or door/game `drop file`\n" \ " `%s` File specification (e.g. `*.txt`) or the current `Startup Directory`\n" \ - " `%!` The Synchronet `exec` directory (use `%@` for non-Unix only)\n" \ " `%.` Executable file extension (`.exe`, or blank for Unix systems)\n" \ - " `%n` The current node directory\n" \ - " `%#` The current node number\n" \ - " `%a` The current user's alias\n" \ - " `%1` The current user's number (use `%2`, `%3`, etc. for 0-padded values)\n" \ - " `%h` The current TCP/IP socket descriptor (handle) value\n" \ + " `%!` The Synchronet `exec directory` (use `%@` for non-Unix only)\n" \ + " `%g` The Synchronet `temp directory`\n" \ + " `%j` The Synchronet `data directory`\n" \ + " `%k` The Synchronet `ctrl directory`\n" \ + " `%z` The Synchronet `text directory`\n" \ + " `%n` The current `node directory`\n" \ + " `%#` The current `node number`\n" \ + " `%a` The current `user's alias`\n" \ + " `%1` The current `user's number` (use `%2`, `%3`, etc. for 0-padded values)\n" \ + " `%h` The current TCP/IP `socket` descriptor (handle) value\n" \ " `%p` The current connection type (protocol, e.g. `telnet`, `rlogin`, etc.)\n" \ - " `%r` The current user's terminal height (rows)\n" \ - " `%w` The current user's terminal width (columns)\n" \ + " `%r` The current user's terminal height (`rows`)\n" \ + " `%w` The current user's terminal width (`columns`)\n" \ "\n" \ "For a complete list of the supported command-line specifiers, see:\n" \ "`http://wiki.synchro.net/config:cmdline`\n" -- GitLab