diff options
author | B. Watson <urchlay@slackware.uk> | 2024-12-14 04:40:37 -0500 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2024-12-14 04:40:37 -0500 |
commit | 072544c2f6072d4fabc8db354cbd128388caa243 (patch) | |
tree | 0222bf18f5118e535c916eb4c4548cef5ba3a5a5 /uxd.rst | |
parent | 56fd406b636f29e4178c888ac62337b9c792f3dd (diff) | |
download | uxd-072544c2f6072d4fabc8db354cbd128388caa243.tar.gz |
document options in man page, implement -o.
Diffstat (limited to 'uxd.rst')
-rw-r--r-- | uxd.rst | 30 |
1 files changed, 29 insertions, 1 deletions
@@ -42,7 +42,35 @@ to a pager, try **less -R**. OPTIONS ======= -There are no options yet. +-r + Highlight multi-byte sequences in reverse video, in the hex output. + +-m + Monochrome mode. Uses underline, bold, reverse video instead of color. + Use this if you have trouble distinguishing the colors, or if they + look too much like angry fruit salad. + NOT IMPLEMENTED YET. + +-o offset + Add this amount to the hex offsets (left column). May be negative, + if you can think of a reason to want it to be. Can be given in + decimal, hex (with *0x* prefix), or octal (with *0* prefix). + +-s position + Seek in input before starting to dump. Positive *position* means + seek from the start of the input. Negative *position* only works + on files (not standard input); it means seek backward from EOF. + NOT IMPLEMENTED YET. + +-u + Use uppercase hex digits A-F. Default is lowercase. + NOT IMPLEMENTED YET. + +-h, --help + Print built-in usage message and exit. + +-v, --version + Print version number and exit. OUTPUT FORMAT ============= |