Initial import of pipestatus-0.6.0, packaged for wip by Aleksey Cheusov.
authorwiz <wiz>
Wed, 10 Mar 2010 23:47:02 +0000 (23:47 +0000)
committerwiz <wiz>
Wed, 10 Mar 2010 23:47:02 +0000 (23:47 +0000)
commit03c18261e7c78093ec1bea3c7c7263c68134c5dd
treec57244accb3bf23ac4cd64d065f1ea1afa4d07ad
parent7caa4ddf130588b7fb36580127462875628599be
Initial import of pipestatus-0.6.0, packaged for wip by Aleksey Cheusov.
Addresses PR 40250.

pipestatus - source file for POSIX shell that allows
to obtain an exit status of every program in a pipe.

                        MOTIVATION

When we program in shell we often run pipes like this

    prog1 args1 | prog2 args2 | ... | progN argsN

POSIX says that exit status of pipe is the exit status of LAST program
in it, i.e.  progN in our example. That is, exit status of all other
programs in pipe is silently ignored.  But in many situations exit
status of all programs in pipe should be checked to make program
robust. Some shells like BASH and ZSH have special extensions for
doing this but POSIX shell unfortunately doesn't provide an EASY way
for doing this.

In order to solve the problem, described above pipestatus was written.
devel/pipestatus/DESCR [new file with mode: 0644]
devel/pipestatus/Makefile [new file with mode: 0644]
devel/pipestatus/PLIST [new file with mode: 0644]
devel/pipestatus/distinfo [new file with mode: 0644]