Commit graph

6 commits

Author SHA1 Message Date
Aleksey Cheusov
5119a20347 fixed: pkglint warning 2008-11-01 19:05:37 +00:00
Aleksey Cheusov
59d9571547 SH=${SH} helper for "make test" (Solaris again) 2008-10-25 01:03:44 +00:00
Aleksey Cheusov
770154ab3a TEST_TARGET set 2008-10-25 01:00:59 +00:00
Aleksey Cheusov
34bd6f9610 version -> 0.5.0
Major changes

    - 'check_status_re' and therefore 'runpipe_re' use 'grep -E'
      instead of 'grep' in order to simplify regexp that
      contains >=2 digit exit statuses.

      NOTE: Formally speaking this breaks backward compatibility.

    - If PIPESTATUS_VERBOSE variable is set to non-empty string, then
      check_status0 and check_status_re functions print an error
      message to stderr.
2008-05-04 21:22:48 +00:00
Aleksey Cheusov
d334543225 DESTDIR support 2008-03-30 13:12:54 +00:00
Aleksey Cheusov
7fbe459652 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.
2008-01-24 22:15:11 +00:00