aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2012-03-07 11:44:15 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2012-03-07 11:44:15 +0100
commitd4acaf70c586ea72fce0e4af4cba87d4a6d00655 (patch)
tree67660a6724a130c22d31dd939c9ac9623a77c0dc
parent8be49c3a800a2c43d71d29fc1b0b61567ed4541d (diff)
downloadbusybox-w32-d4acaf70c586ea72fce0e4af4cba87d4a6d00655.tar.gz
busybox-w32-d4acaf70c586ea72fce0e4af4cba87d4a6d00655.tar.bz2
busybox-w32-d4acaf70c586ea72fce0e4af4cba87d4a6d00655.zip
printf: trim help text
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--coreutils/printf.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/coreutils/printf.c b/coreutils/printf.c
index f53aa4787..1437951a8 100644
--- a/coreutils/printf.c
+++ b/coreutils/printf.c
@@ -36,13 +36,12 @@
36 David MacKenzie <djm@gnu.ai.mit.edu> 36 David MacKenzie <djm@gnu.ai.mit.edu>
37*/ 37*/
38 38
39// 19990508 Busy Boxed! Dave Cinege 39/* 19990508 Busy Boxed! Dave Cinege */
40 40
41//usage:#define printf_trivial_usage 41//usage:#define printf_trivial_usage
42//usage: "FORMAT [ARGUMENT]..." 42//usage: "FORMAT [ARG]..."
43//usage:#define printf_full_usage "\n\n" 43//usage:#define printf_full_usage "\n\n"
44//usage: "Format and print ARGUMENT(s) according to FORMAT,\n" 44//usage: "Format and print ARG(s) according to FORMAT (a-la C printf)"
45//usage: "where FORMAT controls the output exactly as in C printf"
46//usage: 45//usage:
47//usage:#define printf_example_usage 46//usage:#define printf_example_usage
48//usage: "$ printf \"Val=%d\\n\" 5\n" 47//usage: "$ printf \"Val=%d\\n\" 5\n"