diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 1999-11-10 23:13:02 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 1999-11-10 23:13:02 +0000 |
commit | fe675f24f8afae61702b3e2aee9af34dd84a4d5b (patch) | |
tree | 3e448e6550da52d2709e5f52fbae56e9df9462cc /applets | |
parent | 51abdb45dd5418cdf8355e5c314307771f9b8c37 (diff) | |
download | busybox-w32-fe675f24f8afae61702b3e2aee9af34dd84a4d5b.tar.gz busybox-w32-fe675f24f8afae61702b3e2aee9af34dd84a4d5b.tar.bz2 busybox-w32-fe675f24f8afae61702b3e2aee9af34dd84a4d5b.zip |
Updates to usage, and made tar work.
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@94 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 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 | ||