aboutsummaryrefslogtreecommitdiff
path: root/util-linux/hexdump.c
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux/hexdump.c')
-rw-r--r--util-linux/hexdump.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/util-linux/hexdump.c b/util-linux/hexdump.c
index e8c0ee0f5..719feaf4e 100644
--- a/util-linux/hexdump.c
+++ b/util-linux/hexdump.c
@@ -12,24 +12,24 @@
12//config: bool "hexdump (8.8 kb)" 12//config: bool "hexdump (8.8 kb)"
13//config: default y 13//config: default y
14//config: help 14//config: help
15//config: The hexdump utility is used to display binary data in a readable 15//config: The hexdump utility is used to display binary data in a readable
16//config: way that is comparable to the output from most hex editors. 16//config: way that is comparable to the output from most hex editors.
17//config: 17//config:
18//config:config FEATURE_HEXDUMP_REVERSE 18//config:config FEATURE_HEXDUMP_REVERSE
19//config: bool "Support -R, reverse of 'hexdump -Cv'" 19//config: bool "Support -R, reverse of 'hexdump -Cv'"
20//config: default y 20//config: default y
21//config: depends on HEXDUMP 21//config: depends on HEXDUMP
22//config: help 22//config: help
23//config: The hexdump utility is used to display binary data in an ascii 23//config: The hexdump utility is used to display binary data in an ascii
24//config: readable way. This option creates binary data from an ascii input. 24//config: readable way. This option creates binary data from an ascii input.
25//config: NB: this option is non-standard. It's unwise to use it in scripts 25//config: NB: this option is non-standard. It's unwise to use it in scripts
26//config: aimed to be portable. 26//config: aimed to be portable.
27//config: 27//config:
28//config:config HD 28//config:config HD
29//config: bool "hd (8 kb)" 29//config: bool "hd (8 kb)"
30//config: default y 30//config: default y
31//config: help 31//config: help
32//config: hd is an alias to hexdump -C. 32//config: hd is an alias to hexdump -C.
33 33
34//applet:IF_HEXDUMP(APPLET_NOEXEC(hexdump, hexdump, BB_DIR_USR_BIN, BB_SUID_DROP, hexdump)) 34//applet:IF_HEXDUMP(APPLET_NOEXEC(hexdump, hexdump, BB_DIR_USR_BIN, BB_SUID_DROP, hexdump))
35//applet:IF_HD(APPLET_NOEXEC(hd, hexdump, BB_DIR_USR_BIN, BB_SUID_DROP, hd)) 35//applet:IF_HD(APPLET_NOEXEC(hd, hexdump, BB_DIR_USR_BIN, BB_SUID_DROP, hd))