diff options
author | kraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-07-16 20:57:15 +0000 |
---|---|---|
committer | kraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-07-16 20:57:15 +0000 |
commit | d353f773bab8c0f92e149a74400aa31b57da9d05 (patch) | |
tree | e8c416c791c690f661c513340662e4e98ff3464a /coreutils/tee.c | |
parent | 3ab1d8193e335afa74e86a8d8e628158d7e503b9 (diff) | |
download | busybox-w32-d353f773bab8c0f92e149a74400aa31b57da9d05.tar.gz busybox-w32-d353f773bab8c0f92e149a74400aa31b57da9d05.tar.bz2 busybox-w32-d353f773bab8c0f92e149a74400aa31b57da9d05.zip |
Extract usage information into a separate file.
git-svn-id: svn://busybox.net/trunk/busybox@864 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/tee.c')
-rw-r--r-- | coreutils/tee.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/coreutils/tee.c b/coreutils/tee.c index 67b42a24d..c15408b51 100644 --- a/coreutils/tee.c +++ b/coreutils/tee.c | |||
@@ -26,18 +26,6 @@ | |||
26 | #include <errno.h> | 26 | #include <errno.h> |
27 | #include <stdio.h> | 27 | #include <stdio.h> |
28 | 28 | ||
29 | static const char tee_usage[] = | ||
30 | "tee [OPTION]... [FILE]...\n" | ||
31 | #ifndef BB_FEATURE_TRIVIAL_HELP | ||
32 | "\nCopy standard input to each FILE, and also to standard output.\n\n" | ||
33 | "Options:\n" "\t-a\tappend to the given FILEs, do not overwrite\n" | ||
34 | #if 0 | ||
35 | "\t-i\tignore interrupt signals\n" | ||
36 | #endif | ||
37 | #endif | ||
38 | ; | ||
39 | |||
40 | |||
41 | /* FileList _______________________________________________________________ */ | 29 | /* FileList _______________________________________________________________ */ |
42 | 30 | ||
43 | #define FL_MAX 1024 | 31 | #define FL_MAX 1024 |
@@ -133,4 +121,4 @@ int tee_main(int argc, char **argv) | |||
133 | return(0); | 121 | return(0); |
134 | } | 122 | } |
135 | 123 | ||
136 | /* $Id: tee.c,v 1.12 2000/07/14 01:51:25 kraai Exp $ */ | 124 | /* $Id: tee.c,v 1.13 2000/07/16 20:57:15 kraai Exp $ */ |