aboutsummaryrefslogtreecommitdiff
path: root/toys/other/hexedit.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2016-02-19 11:58:17 -0600
committerRob Landley <rob@landley.net>2016-02-19 11:58:17 -0600
commit137f5c9b0937dfa204ea2580e58430c7180a79c5 (patch)
tree0f724b9ea057d505d9086eae4ce6de4452d46b87 /toys/other/hexedit.c
parent577b7cabd4bae054e314484249f28088b5f385ab (diff)
downloadtoybox-137f5c9b0937dfa204ea2580e58430c7180a79c5.tar.gz
Help text update from Isaac Dunham, tweaked slightly.
Diffstat (limited to 'toys/other/hexedit.c')
-rw-r--r--toys/other/hexedit.c9
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