I often grep CSV files with column names on the first line. Thus, I want the output of grep to always include the first line (to get the column names) as well as any lines matching the grep pattern. What is the best way to do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
sed:
awk:
grep1:
|
||||
|
You can use
This will print the first line twice, however, if it happens to contain the pattern.
|
|||||||||||||
|
|
grep doesn't really have a concept of line number, but awk does, so here's an example to output lines contain "Incoming" - and the first line, whatever it is:
You could make a script (a bit excessive, but). I made a file, grep+1, and put this in it:
Now one can:
edit: removed the "{print;}", which is awk's default action. |
|||||||||||
|
|
You could include an alternate pattern match for the one of the column names. If a column was called COL then this would work:
|
|||
|
|
Just do
and then execute |
|||||
|