diff options
author | beppu <beppu@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-04-13 03:36:01 +0000 |
---|---|---|
committer | beppu <beppu@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-04-13 03:36:01 +0000 |
commit | 243153c09634fdbd0ac39af35677a4a7929e9c64 (patch) | |
tree | 1c2b1b24437d859f22e11a019631e908b388420c | |
parent | 9c51be96dc0e319ba7ff58ddedafe9598a22e069 (diff) | |
download | busybox-w32-243153c09634fdbd0ac39af35677a4a7929e9c64.tar.gz busybox-w32-243153c09634fdbd0ac39af35677a4a7929e9c64.tar.bz2 busybox-w32-243153c09634fdbd0ac39af35677a4a7929e9c64.zip |
- the message that comes up when busybox is invoked
w/o parameters was extending beyond the 80th column
git-svn-id: svn://busybox.net/trunk/busybox@450 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | applets/busybox.c | 7 | ||||
-rw-r--r-- | busybox.c | 7 |
2 files changed, 8 insertions, 6 deletions
diff --git a/applets/busybox.c b/applets/busybox.c index b65b13e65..a14711a67 100644 --- a/applets/busybox.c +++ b/applets/busybox.c | |||
@@ -379,9 +379,10 @@ int busybox_main(int argc, char **argv) | |||
379 | fprintf(stderr, "Usage: busybox [function] [arguments]...\n"); | 379 | fprintf(stderr, "Usage: busybox [function] [arguments]...\n"); |
380 | fprintf(stderr, " or: [function] [arguments]...\n\n"); | 380 | fprintf(stderr, " or: [function] [arguments]...\n\n"); |
381 | fprintf(stderr, | 381 | fprintf(stderr, |
382 | "\tBusyBox is a multi-call binary that combines many common Unix utilities into a\n" | 382 | "\tBusyBox is a multi-call binary that combines many common Unix\n" |
383 | "\tsingle executable. Most people will create a link to busybox for each function\n" | 383 | "\tutilities into a single executable. Most people will create a\n" |
384 | "\tthey wish to use, and BusyBox will act like whatever it was invoked as.\n"); | 384 | "\tlink to busybox for each function they wish to use, and BusyBox\n" |
385 | "\twill act like whatever it was invoked as.\n"); | ||
385 | fprintf(stderr, "\nCurrently defined functions:\n"); | 386 | fprintf(stderr, "\nCurrently defined functions:\n"); |
386 | 387 | ||
387 | while (a->name != 0) { | 388 | while (a->name != 0) { |
@@ -379,9 +379,10 @@ int busybox_main(int argc, char **argv) | |||
379 | fprintf(stderr, "Usage: busybox [function] [arguments]...\n"); | 379 | fprintf(stderr, "Usage: busybox [function] [arguments]...\n"); |
380 | fprintf(stderr, " or: [function] [arguments]...\n\n"); | 380 | fprintf(stderr, " or: [function] [arguments]...\n\n"); |
381 | fprintf(stderr, | 381 | fprintf(stderr, |
382 | "\tBusyBox is a multi-call binary that combines many common Unix utilities into a\n" | 382 | "\tBusyBox is a multi-call binary that combines many common Unix\n" |
383 | "\tsingle executable. Most people will create a link to busybox for each function\n" | 383 | "\tutilities into a single executable. Most people will create a\n" |
384 | "\tthey wish to use, and BusyBox will act like whatever it was invoked as.\n"); | 384 | "\tlink to busybox for each function they wish to use, and BusyBox\n" |
385 | "\twill act like whatever it was invoked as.\n"); | ||
385 | fprintf(stderr, "\nCurrently defined functions:\n"); | 386 | fprintf(stderr, "\nCurrently defined functions:\n"); |
386 | 387 | ||
387 | while (a->name != 0) { | 388 | while (a->name != 0) { |