aboutsummaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
Diffstat (limited to 'applets')
-rw-r--r--applets/busybox.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/applets/busybox.c b/applets/busybox.c
index 29a112b12..c45d0c7e2 100644
--- a/applets/busybox.c
+++ b/applets/busybox.c
@@ -220,12 +220,12 @@ int busybox_main(int argc, char **argv)
220 220
221 if (been_there_done_that == 1 || argc < 1) { 221 if (been_there_done_that == 1 || argc < 1) {
222 const struct Applet *a = applets; 222 const struct Applet *a = applets;
223 fprintf(stderr, "BusyBox v%s (%s) multi-call binary -- GPL2\n", 223 fprintf(stderr, "BusyBox v%s (%s) multi-call binary -- GPL2\n\n",
224 BB_VER, BB_BT); 224 BB_VER, BB_BT);
225 fprintf(stderr, "\nUsage:\t[function] [arguments]...\n"); 225 fprintf(stderr, "Usage: busybox [function] [arguments]...\n");
226 fprintf(stderr, "\tbusybox [function] [arguments]...\n"); 226 fprintf(stderr, " or: [function] [arguments]...\n\n");
227 fprintf(stderr, 227 fprintf(stderr,
228 "\n\tMost people will create a symlink to busybox for each\n" 228 "\tMost people will create a symlink to busybox for each\n"
229 "\tfunction name, and busybox will act like whatever you invoke it as.\n"); 229 "\tfunction name, and busybox will act like whatever you invoke it as.\n");
230 fprintf(stderr, "\nCurrently defined functions:\n"); 230 fprintf(stderr, "\nCurrently defined functions:\n");
231 231