diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2020-02-19 14:08:10 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2020-02-19 14:11:15 (GMT) |
commit | 97b639d3f17ab826986c06bb8ea7f9f534b1d3ee (patch) | |
tree | 667feadb4676eac9b90eedfabd9551ade68197ad /Help | |
parent | 5395bf05ebaa122400a2bd9f0b0547cf760aa43c (diff) | |
download | CMake-97b639d3f17ab826986c06bb8ea7f9f534b1d3ee.zip CMake-97b639d3f17ab826986c06bb8ea7f9f534b1d3ee.tar.gz CMake-97b639d3f17ab826986c06bb8ea7f9f534b1d3ee.tar.bz2 |
Help: Make note that file(READ ... HEX) produces lowercase letters
Diffstat (limited to 'Help')
-rw-r--r-- | Help/command/file.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Help/command/file.rst b/Help/command/file.rst index df7d8ba..5877d43 100644 --- a/Help/command/file.rst +++ b/Help/command/file.rst @@ -54,7 +54,9 @@ Reading Read content from a file called ``<filename>`` and store it in a ``<variable>``. Optionally start from the given ``<offset>`` and read at most ``<max-in>`` bytes. The ``HEX`` option causes data to -be converted to a hexadecimal representation (useful for binary data). +be converted to a hexadecimal representation (useful for binary data). If the +``HEX`` option is specified, letters in the output (``a`` through ``f``) are in +lowercase. .. _STRINGS: |