summaryrefslogtreecommitdiff
path: root/tr.c
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-04-17 16:44:46 +0000
committerErik Andersen <andersen@codepoet.org>2000-04-17 16:44:46 +0000
commit26702fe1919ed4d01649acc81c2d42545004cbfd (patch)
treecc972f2719033cdcd53d24db2ba3ce5e43714bb2 /tr.c
parente5b6c7dd9cb32852a7f5b19a9855cf3c32543396 (diff)
downloadbusybox-w32-26702fe1919ed4d01649acc81c2d42545004cbfd.tar.gz
busybox-w32-26702fe1919ed4d01649acc81c2d42545004cbfd.tar.bz2
busybox-w32-26702fe1919ed4d01649acc81c2d42545004cbfd.zip
Bugfixes.
-Erik
Diffstat (limited to 'tr.c')
-rw-r--r--tr.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/tr.c b/tr.c
index b631b0065..5f4938028 100644
--- a/tr.c
+++ b/tr.c
@@ -44,7 +44,7 @@ static char sccsid[] = "@(#)tr.c 8.2 (Berkeley) 5/4/95";
44#endif 44#endif
45static const char rcsid[] = 45static const char rcsid[] =
46 46
47 "$Id: tr.c,v 1.3 2000/04/15 16:34:54 erik Exp $"; 47 "$Id: tr.c,v 1.4 2000/04/17 16:44:46 erik Exp $";
48#endif /* not lint */ 48#endif /* not lint */
49#endif /* #if 0 */ 49#endif /* #if 0 */
50 50
@@ -138,10 +138,7 @@ int cflag;
138 138
139static void tr_usage() 139static void tr_usage()
140{ 140{
141 usage( "\ttr [-csu] string1 string2\n" 141 usage( "\ttr [-cdsu] string1 [string2]\n\n"
142 "\ttr [-cu] -d string1\n"
143 "\ttr [-cu] -s string1\n"
144 "\ttr [-cu] -ds string1 string2\n\n"
145 "Translate, squeeze, and/or delete characters from standard\n" 142 "Translate, squeeze, and/or delete characters from standard\n"
146 "input, writing to standard output.\n"); 143 "input, writing to standard output.\n");
147} 144}