diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-05-01 22:34:24 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-05-01 22:34:24 +0000 |
commit | 3c1217cfad0fb72f458223ae73e1ce612f5e9efd (patch) | |
tree | 724b843eacacbb51efcd62414c0c47d2668e3351 | |
parent | 8f8d6d5f2dfd874a659e2d648db2c908f9e6093b (diff) | |
download | busybox-3c1217cfad0fb72f458223ae73e1ce612f5e9efd.tar.gz |
Document tr change
-Erik
-rw-r--r-- | Changelog | 4 | ||||
-rw-r--r-- | docs/busybox.pod | 13 |
2 files changed, 13 insertions, 4 deletions
@@ -16,6 +16,10 @@ * tail can now accept -<num> commands (e.g. -10) for better compatibility with the standard tail command * added a simple id implementation; doesn't support supp. groups yet + * logname used getlogin(3), which uses utmp under the hood. Now it behaves. + * Due to the license change, I can now use minix code. Minux tr replaces + the BSD derived tr, saving 4k and eliminating bsearch(3) from the + list of used Libc symbols. * More doc updates -Erik diff --git a/docs/busybox.pod b/docs/busybox.pod index c331c65ec..6f40884b5 100644 --- a/docs/busybox.pod +++ b/docs/busybox.pod @@ -1602,11 +1602,16 @@ Example: ------------------------------- =item tr +Usage: tr [-cds] STRING1 [STRING2] -Usage: tr [B<-cdsu>] string1 [string2] +Translate, squeeze, and/or delete characters from +standard input, writing to standard output. -Translate, squeeze, and/or delete characters from standard -input, writing to standard output. +Options: + + -c take complement of STRING1 + -d delete input characters coded STRING1 + -s squeeze multiple output characters of STRING2 into one character Example: @@ -1849,4 +1854,4 @@ Enrique Zanardi <ezanardi@ull.es> =cut -# $Id: busybox.pod,v 1.24 2000/04/28 00:18:56 erik Exp $ +# $Id: busybox.pod,v 1.25 2000/05/01 22:34:24 erik Exp $ |