diff options
Diffstat (limited to 'util-linux/hexdump.c')
-rw-r--r-- | util-linux/hexdump.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/util-linux/hexdump.c b/util-linux/hexdump.c index 25f771201..719feaf4e 100644 --- a/util-linux/hexdump.c +++ b/util-linux/hexdump.c | |||
@@ -9,27 +9,27 @@ | |||
9 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 9 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
10 | */ | 10 | */ |
11 | //config:config HEXDUMP | 11 | //config:config HEXDUMP |
12 | //config: bool "hexdump" | 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" | 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)) |