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 c36bc2626..15e1bef87 100644
--- a/applets/busybox.c
+++ b/applets/busybox.c
@@ -111,7 +111,7 @@ static const struct Applet applets[] = {
111 {"mt", mt_main}, 111 {"mt", mt_main},
112#endif 112#endif
113#ifdef BB_MV //bin 113#ifdef BB_MV //bin
114 {"mv", dyadic_main}, 114 {"mv", mv_main},
115#endif 115#endif
116#ifdef BB_PRINTF //usr/bin 116#ifdef BB_PRINTF //usr/bin
117 {"printf", printf_main}, 117 {"printf", printf_main},
@@ -144,7 +144,7 @@ static const struct Applet applets[] = {
144 {"sync", sync_main}, 144 {"sync", sync_main},
145#endif 145#endif
146#ifdef BB_TOUCH //usr/bin 146#ifdef BB_TOUCH //usr/bin
147 {"touch", monadic_main}, 147 {"touch", touch_main},
148#endif 148#endif
149#ifdef BB_TRUE //bin 149#ifdef BB_TRUE //bin
150 {"true", true_main}, 150 {"true", true_main},
@@ -208,8 +208,8 @@ int busybox_main(int argc, char **argv)
208 const struct Applet *a = applets; 208 const struct Applet *a = applets;
209 fprintf(stderr, "BusyBox v%s (%s) multi-call binary -- GPL2\n", 209 fprintf(stderr, "BusyBox v%s (%s) multi-call binary -- GPL2\n",
210 BB_VER, BB_BT); 210 BB_VER, BB_BT);
211 fprintf(stderr, "Usage: busybox [function] [arguments]...\n"); 211 fprintf(stderr, "\nUsage:\t[function] [arguments]...\n");
212 fprintf(stderr, "or\nUsage: [function] [arguments]...\n"); 212 fprintf(stderr, "\tbusybox [function] [arguments]...\n");
213 fprintf(stderr, 213 fprintf(stderr,
214 "\n\tMost people will create a symlink to busybox for each\n" 214 "\n\tMost people will create a symlink to busybox for each\n"
215 "\tfunction name, and busybox will act like whatever you invoke it as.\n"); 215 "\tfunction name, and busybox will act like whatever you invoke it as.\n");