aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/applets.h1
-rw-r--r--include/usage.h33
2 files changed, 21 insertions, 13 deletions
diff --git a/include/applets.h b/include/applets.h
index 587ccbf51..f188232c4 100644
--- a/include/applets.h
+++ b/include/applets.h
@@ -171,6 +171,7 @@ USE_GREP(APPLET(grep, _BB_DIR_BIN, _BB_SUID_NEVER))
171USE_GUNZIP(APPLET(gunzip, _BB_DIR_BIN, _BB_SUID_NEVER)) 171USE_GUNZIP(APPLET(gunzip, _BB_DIR_BIN, _BB_SUID_NEVER))
172USE_GZIP(APPLET(gzip, _BB_DIR_BIN, _BB_SUID_NEVER)) 172USE_GZIP(APPLET(gzip, _BB_DIR_BIN, _BB_SUID_NEVER))
173USE_HALT(APPLET(halt, _BB_DIR_SBIN, _BB_SUID_NEVER)) 173USE_HALT(APPLET(halt, _BB_DIR_SBIN, _BB_SUID_NEVER))
174USE_HD(APPLET_ODDNAME(hd, hexdump, _BB_DIR_USR_BIN, _BB_SUID_NEVER, hd))
174USE_HDPARM(APPLET(hdparm, _BB_DIR_SBIN, _BB_SUID_NEVER)) 175USE_HDPARM(APPLET(hdparm, _BB_DIR_SBIN, _BB_SUID_NEVER))
175USE_HEAD(APPLET(head, _BB_DIR_USR_BIN, _BB_SUID_NEVER)) 176USE_HEAD(APPLET(head, _BB_DIR_USR_BIN, _BB_SUID_NEVER))
176USE_HEXDUMP(APPLET_NOEXEC(hexdump, hexdump, _BB_DIR_USR_BIN, _BB_SUID_NEVER, hexdump)) 177USE_HEXDUMP(APPLET_NOEXEC(hexdump, hexdump, _BB_DIR_USR_BIN, _BB_SUID_NEVER, hexdump))
diff --git a/include/usage.h b/include/usage.h
index 592316ace..d0eecdb4a 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -1384,21 +1384,28 @@
1384 "daemon:x:1:1:daemon:/usr/sbin:/bin/sh\n" 1384 "daemon:x:1:1:daemon:/usr/sbin:/bin/sh\n"
1385 1385
1386#define hexdump_trivial_usage \ 1386#define hexdump_trivial_usage \
1387 "[-[bcCdefnosvx]] [OPTION] FILE" 1387 "[-bcCdefnosvx" USE_FEATURE_HEXDUMP_REVERSE("R") "] FILE..."
1388#define hexdump_full_usage \ 1388#define hexdump_full_usage \
1389 "Display file(s) or standard input in a user specified format" \ 1389 "Display file(s) or standard input in a user specified format" \
1390 "\n\nOptions:\n" \ 1390 "\n\nOptions:" \
1391 " -b One-byte octal display\n" \ 1391 "\n -b One-byte octal display" \
1392 " -c One-byte character display\n" \ 1392 "\n -c One-byte character display" \
1393 " -C Canonical hex+ASCII, 16 bytes per line\n" \ 1393 "\n -C Canonical hex+ASCII, 16 bytes per line" \
1394 " -d Two-byte decimal display\n" \ 1394 "\n -d Two-byte decimal display" \
1395 " -e FORMAT STRING\n" \ 1395 "\n -e FORMAT STRING" \
1396 " -f FORMAT FILE\n" \ 1396 "\n -f FORMAT FILE" \
1397 " -n LENGTH Interpret only LENGTH bytes of input\n" \ 1397 "\n -n LENGTH Interpret only LENGTH bytes of input" \
1398 " -o Two-byte octal display\n" \ 1398 "\n -o Two-byte octal display" \
1399 " -s OFFSET Skip OFFSET bytes\n" \ 1399 "\n -s OFFSET Skip OFFSET bytes" \
1400 " -v Display all input data\n" \ 1400 "\n -v Display all input data" \
1401 " -x Two-byte hexadecimal display" 1401 "\n -x Two-byte hexadecimal display" \
1402 USE_FEATURE_HEXDUMP_REVERSE( \
1403 "\n -R Reverse of 'hexdump -Cv'") \
1404
1405#define hd_trivial_usage \
1406 "FILE..."
1407#define hd_full_usage \
1408 "hd is an alias for hexdump -C"
1402 1409
1403#define hostid_trivial_usage \ 1410#define hostid_trivial_usage \
1404 "" 1411 ""