]> err.no Git - moreutils/commitdiff
* Add pee (pipe tee) contributed by Miek Gieben.
authorjoeyh <joeyh>
Tue, 14 Mar 2006 23:08:19 +0000 (23:08 +0000)
committerjoeyh <joeyh>
Tue, 14 Mar 2006 23:08:19 +0000 (23:08 +0000)
Makefile
README
debian/changelog
debian/control
debian/copyright
pee [new file with mode: 0755]
pee.1 [new file with mode: 0644]

index a4527e0bbbcf0e1b77b94028387df2053027956b..7b96a928985d8a8623b123ba960d7d2d56da1407 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
-BINS=isutf8 ifdata
+BINS=isutf8 ifdata pee
 PERLSCRIPTS=vidir vipe ts combine sponge
-MANS=sponge.1 vidir.1 vipe.1 isutf8.1 ts.1 combine.1 ifdata.1
+MANS=sponge.1 vidir.1 vipe.1 isutf8.1 ts.1 combine.1 ifdata.1 pee.1
 CFLAGS=-O2 -g -Wall
 
 all: $(BINS) $(MANS)
@@ -20,10 +20,13 @@ check: isutf8
        ./check-isutf8
 
 isutf8.1: isutf8.docbook
-       docbook2x-man isutf8.docbook
+       docbook2x-man $<
 
 ifdata.1: ifdata.docbook
-       docbook2x-man ifdata.docbook
+       docbook2x-man $<
+
+pee.1: pee.docbook
+       docbook2x-man $<
 
 %.1: %
        pod2man --center=" " --release="moreutils" $< > $@;
diff --git a/README b/README
index 061c31fe8e37c851a1ae3596f5baa1bac95da74a..1f6c2878c432dd17ee5d7dc03f2512d4ff0efb95 100644 (file)
--- a/README
+++ b/README
@@ -15,6 +15,8 @@ combine
        combine the lines in two files using boolean operations
 ifdata
        get network interface info without parsing ifconfig output
+pee
+       tee standard input to pipes
 
 
 Your suggestions of additional tools to add to this collection are
index f9b2baf2e73bf9f1ec10410dd568376a9052943d..2831c7559a401ed23187e421991c7b4295b150f0 100644 (file)
@@ -1,3 +1,9 @@
+moreutils (0.7) UNRELEASED; urgency=low
+
+  * Add pee (pipe tee) contributed by Miek Gieben.
+
+ -- Joey Hess <joeyh@debian.org>  Tue, 14 Mar 2006 18:07:46 -0500
+
 moreutils (0.6) unstable; urgency=low
 
   * Revert to perl sponge since the C one corrupts larger files.
index a49a3e1fc9051990b8f830d66cd7e50084371b55..176a10e78fcffaac33a04717bfcbc5463c8e7eb9 100644 (file)
@@ -20,3 +20,4 @@ Description: additional unix utilities
   - vipe: insert a text editor into a pipe
   - combine: combine the lines in two files using boolean operations
   - ifdata: get network interface info without parsing ifconfig output 
+  - pee: tee standard input to pipes
index 455e4066ffc7b2e3c012a2348cff8ef8e1f1968b..dba6c9efbb03a83ec69458e6eb26656bce467d57 100644 (file)
@@ -30,6 +30,8 @@ ifdata is Copyright (C) 2002 by Benjamin BAYART, under the terms of
 the GPL. It was originally called ifcfg and has a web page here:
 http://edgard.dyn.fdn.fr/developpements/ifcfg.shtml
 
+pee is Copyright (c) Miek Gieben, 2006, under the terms of the GPL.
+
 Everything else is copyright 2006 by Joey Hess, under the terms of GPL.
 The full text of the GNU GPL can be found in /usr/share/common-licenses/GPL
 on Debian systems.
diff --git a/pee b/pee
new file mode 100755 (executable)
index 0000000..b4874b7
Binary files /dev/null and b/pee differ
diff --git a/pee.1 b/pee.1
new file mode 100644 (file)
index 0000000..019488f
--- /dev/null
+++ b/pee.1
@@ -0,0 +1,11 @@
+.TH pee 1 2006\-03\-14  
+.SH NAME
+pee \- tee standard input to pipes
+.SH SYNOPSIS
+\fBpee\fR [\fB"command"\fR\&...]
+.SH DESCRIPTION
+pee is like tee
+but for pipes. Each command is run and standard input is
+copied into it, as well as being sent to stdout.
+.SH "SEE ALSO"
+\fBtee\fR(1)