diff options
author | Eric Andersen <andersen@codepoet.org> | 1999-10-07 08:30:23 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 1999-10-07 08:30:23 +0000 |
commit | 596e5469d00fa4a74d8a3b1ebfaae20ce8dc3afe (patch) | |
tree | 4d48d109e66c5197bb27c8215062aab28d385509 /applets | |
parent | 5c3199e0a519695c367b773e179b5458670f452b (diff) | |
download | busybox-596e5469d00fa4a74d8a3b1ebfaae20ce8dc3afe.tar.gz |
more stuff
Diffstat (limited to 'applets')
-rw-r--r-- | applets/busybox.c | 8 |
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[] = { {"mt", mt_main}, #endif #ifdef BB_MV //bin - {"mv", dyadic_main}, + {"mv", mv_main}, #endif #ifdef BB_PRINTF //usr/bin {"printf", printf_main}, @@ -144,7 +144,7 @@ static const struct Applet applets[] = { {"sync", sync_main}, #endif #ifdef BB_TOUCH //usr/bin - {"touch", monadic_main}, + {"touch", touch_main}, #endif #ifdef BB_TRUE //bin {"true", true_main}, @@ -208,8 +208,8 @@ int busybox_main(int argc, char **argv) const struct Applet *a = applets; fprintf(stderr, "BusyBox v%s (%s) multi-call binary -- GPL2\n", BB_VER, BB_BT); - fprintf(stderr, "Usage: busybox [function] [arguments]...\n"); - fprintf(stderr, "or\nUsage: [function] [arguments]...\n"); + fprintf(stderr, "\nUsage:\t[function] [arguments]...\n"); + fprintf(stderr, "\tbusybox [function] [arguments]...\n"); fprintf(stderr, "\n\tMost people will create a symlink to busybox for each\n" "\tfunction name, and busybox will act like whatever you invoke it as.\n"); |