vote up 1 vote down star

I commonly build up long, multi-command pipes on Linux/Unix to process large text files (sed | grep | sort | less , etc.).

I would like to be able to use a pipeline element that would buffer everything received via stdin until a key phrase/string is detected (e.g. "SUCCESS"), at which point it releases everything received up to that point to stdout and then continues to pass the rest of the stream through. If the key phrase is not detected, the program would discard all the contents.

Is there a standard command that can do this, or do I need to write a Perl script?

Thanks in advance for any ideas here!

Wodow, lover of pipes

flag
2  
My compliments for the "lover of pipes"... – orsogufo Sep 3 at 11:45

4 Answers

vote up 0 vote down check

Probably the simplest solution is to use sed:

    sed '/SUCCESS/,$!{H;d;};$H;x'
link|flag
This works perfectly on a line-by-line basis (having tested directly off the command line). – womow Sep 7 at 11:02
Thanks for this one! – womow Sep 7 at 11:03
vote up 0 vote down

A quick and dirty way of doing it goes like this:

perl -pe'$b.=$_;/SUCCESS/&&last}print$b;while(<>){'

But if you do this often, it deserves a script of its own.

link|flag
vote up -1 vote down

I think you might be describing a Here document (Section 3.6.6). A simple command-line example:

$ cat > output.txt <<EOF

The shell continues to read until the Here token is seen, (in this case the word EOF, but it can be anything - EOF is just a common convention), then evaluates the whole buffer.

A number of other languages like Perl and Ruby also have this feature.

link|flag
This is not at all what the OP asked about. It is not a filter, and will not pass through the lines following the match. – mark4o Sep 3 at 18:38
vote up 2 vote down

You could use a simple awk/gawk 1 liner to do this:

EDIT: Updated to fix the bug that dmckee pointed out (and fixed) in his comment

gawk '{sum = sum "\n" $0} ; /success/ {print sum}'

link|flag
Cute . – dmckee Sep 3 at 14:04
This will not pass through the lines following "success". – mark4o Sep 3 at 18:36
It could easily be modified to do so. – Omnifarious Sep 3 at 23:06
Like: gawk '/SUCCESS/{next} {sum = sum "\n" $0} END{print sum "\n"}' That one assumes that the SUCCESS key can occur anywhere in a line. Also, there is a bug fix (you need $0 not $1). – dmckee Sep 4 at 4:45
The one in answer fails at passing the rest of the stream. The one in the comments releases everything at end of file instead of when SUCCESS is encountered. – JB Sep 4 at 14:42
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.