aboutsummaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-11-10 23:13:02 +0000
committerEric Andersen <andersen@codepoet.org>1999-11-10 23:13:02 +0000
commitd73dc5b07390fb90e7f605871c993a28eedf1d46 (patch)
tree3e448e6550da52d2709e5f52fbae56e9df9462cc /applets
parent84d85680712573c7a8bd7d0491c3f944dc08ad10 (diff)
downloadbusybox-w32-d73dc5b07390fb90e7f605871c993a28eedf1d46.tar.gz
busybox-w32-d73dc5b07390fb90e7f605871c993a28eedf1d46.tar.bz2
busybox-w32-d73dc5b07390fb90e7f605871c993a28eedf1d46.zip
Updates to usage, and made tar work.
-Erik
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