Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like ignore all lines which occur before a match in bash (also ignoring the matched line. Example of input could be

R1-01.sql
R1-02.sql
R1-03.sql
R1-04.sql
R2-01.sql 
R2-02.sql
R2-03.sql

and if I match R2-01.sql in this already sorted input I would like to get

R2-02.sql
R2-03.sql
share|improve this question

4 Answers

up vote 8 down vote accepted

Many ways possible. For example: assuming that your input is in list.txt

PATTERN="R2-01.sql"
sed "1,/$PATTERN/d" <list.txt
share|improve this answer

How to ignore all lines before a match occurs in bash?

The question headline and your example don't quite match up.

Print all lines from "R2-01.sql" in sed:

sed -n '/R2-01.sql/,$p' input_file.txt

Where:

  • -n suppresses printing the pattern space to stdout
  • / starts and ends the pattern to match (regular expression)
  • , separates the start of the range from the end
  • $ addresses the last line in the input
  • p echoes the pattern space in that range to stdout
  • input_file.txt is the input file

Print all lines after "R2-01.sql" in sed:

sed '1,/R2-01.sql/d' input_file.txt
  • 1 addresses the first line of the input
  • , separates the start of the range from the end
  • / starts and ends the pattern to match (regular expression)
  • $ addresses the last line in the input
  • d deletes the pattern space in that range
  • input_file.txt is the input file
  • Everything not deleted is echoed to stdout.
share|improve this answer
Will that print the line with the pattern? Seems the OP does not want that. – glenn jackman May 9 '11 at 14:21
@glenn: It depends on which part of the question you read. I've updated my answer. – Johnsyweb May 9 '11 at 22:59
awk -v pattern=R2-01.sql '
  print_it {print} 
  $0 ~ pattern {print_it = 1}
'
share|improve this answer

you can do with this,but i think jomo666's answer was better.

sed -nr '/R2-01.sql/,${/R2-01/d;p}' <<END
    R1-01.sql
    R1-02.sql
    R1-03.sql
    R1-04.sql
    R2-01.sql
    R2-02.sql
    R2-03.sql
    END
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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