diff options
author | Rob Landley <rob@landley.net> | 2016-02-19 11:58:17 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-02-19 11:58:17 -0600 |
commit | 137f5c9b0937dfa204ea2580e58430c7180a79c5 (patch) | |
tree | 0f724b9ea057d505d9086eae4ce6de4452d46b87 /toys | |
parent | 577b7cabd4bae054e314484249f28088b5f385ab (diff) | |
download | toybox-137f5c9b0937dfa204ea2580e58430c7180a79c5.tar.gz |
Help text update from Isaac Dunham, tweaked slightly.
Diffstat (limited to 'toys')
-rw-r--r-- | toys/other/hexedit.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/toys/other/hexedit.c b/toys/other/hexedit.c index ff13b513..a9d97aa2 100644 --- a/toys/other/hexedit.c +++ b/toys/other/hexedit.c @@ -12,9 +12,16 @@ config HEXEDIT help usage: hexedit FILENAME - Hexadecimal file editor. + Hexadecimal file editor. All changes are written to disk immediately. -r Read only (display but don't edit) + + Keys: + Arrows Move left/right/up/down by one line/column + Pg Up/Pg Dn Move up/down by one page + 0-9, a-f Change current half-byte to hexadecimal value + u Undo + q/^c/^d/<esc> Quit */ #define FOR_hexedit |