The UNIX and Linux Forums
>
Top Forums
>
Shell Programming and Scripting
Search text from a file and print text and one previous line too
.
User Name
Remember Me?
Password
google unix.com
Forums
Register
Forum Rules
Links
Albums
FAQ
Members List
Calendar
Search
Today's Posts
Mark Forums Read
Thread
:
Search text from a file and print text and one previous line too
View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
#
4
(
permalink
)
01-02-2009
Christoph Spohr
Registered User
Join Date: Sep 2008
Posts: 205
Or:
Code:
grep -B1 pattern file
or:
Code:
sed
-n -e '/pattern/{x;p;x;p}' -e h file
Christoph Spohr
View Public Profile
Find all posts by Christoph Spohr
Find Christoph Spohr's past nominations received
Find Christoph Spohr's present nominations given