diff options
author | Brian Inglis <Brian.Inglis@SystematicSW.ab.ca> | 2019-11-11 10:29:00 -0700 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2019-11-13 09:39:04 +0100 |
commit | d3110717f0a39ec7d00921c048bfd3c8f8efe7c4 (patch) | |
tree | c2212ba47af62e0775ea2901deafaff54eb23df7 /winsup | |
parent | d14714c690c0b11b0aa7e6d09c930a321eeac7f9 (diff) | |
download | newlib-d3110717f0a39ec7d00921c048bfd3c8f8efe7c4.zip newlib-d3110717f0a39ec7d00921c048bfd3c8f8efe7c4.tar.gz newlib-d3110717f0a39ec7d00921c048bfd3c8f8efe7c4.tar.bz2 |
regtool: allow /proc/registry{,32,64}/ registry path prefix
The user can supply the registry path prefix /proc/registry{,32,64}/ to
use path completion.
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/doc/utils.xml | 7 | ||||
-rw-r--r-- | winsup/utils/regtool.cc | 17 |
2 files changed, 19 insertions, 5 deletions
diff --git a/winsup/doc/utils.xml b/winsup/doc/utils.xml index 043ed73..5f266bc 100644 --- a/winsup/doc/utils.xml +++ b/winsup/doc/utils.xml @@ -1976,8 +1976,11 @@ remote host in either \\hostname or hostname: format and prefix is any of: users HKU HKEY_USERS You can use forward slash ('/') as a separator instead of backslash, in -that case backslash is treated as escape character -Example: regtool get '\user\software\Microsoft\Clock\iFormat' +that case backslash is treated as an escape character. +You can also supply the registry path prefix /proc/registry{,32,64}/ to +use path completion. +Example: + regtool list '/HKLM/SOFTWARE/Classes/MIME/Database/Content Type/audio\\/wav' </screen> </refsect1> diff --git a/winsup/utils/regtool.cc b/winsup/utils/regtool.cc index a44d907..f91e61d 100644 --- a/winsup/utils/regtool.cc +++ b/winsup/utils/regtool.cc @@ -166,11 +166,13 @@ usage (FILE *where = stderr) " machine HKLM HKEY_LOCAL_MACHINE\n" " users HKU HKEY_USERS\n" "\n" - "If the keyname starts with a forward slash ('/'), the forward slash is used\n" - "as separator and the backslash can be used as escape character.\n"); + "You can use forward slash ('/') as a separator instead of backslash, in\n" + "that case backslash is treated as an escape character.\n" + "You can also supply the registry path prefix /proc/registry{,32,64}/ to\n" + "use path completion.\n"); fprintf (where, "" "Example:\n" - "%s list '/machine/SOFTWARE/Classes/MIME/Database/Content Type/audio\\/wav'\n\n", prog_name); + "%s list '/HKLM/SOFTWARE/Classes/MIME/Database/Content Type/audio\\/wav'\n\n", prog_name); } if (where == stderr) fprintf (where, @@ -350,6 +352,15 @@ find_key (int howmanyparts, REGSAM access, int option = 0) *h = 0; n = e; } + else if (strncmp ("\\proc\\registry", n, strlen ("\\proc\\registry")) == 0) + { + /* skip /proc/registry{,32,64}/ prefix */ + n += strlen ("\\proc\\registry"); + if (strncmp ("64", n, strlen ("64")) == 0) + n += strlen ("64"); + else if (strncmp ("32", n, strlen ("32")) == 0) + n += strlen ("32"); + } while (*n != '\\') n++; *n++ = 0; |