The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM


UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
File filter Dastard Shell Programming and Scripting 3 09-06-2007 10:50 AM
AIX printer filter blacksm AIX 4 08-29-2007 01:58 AM
Filter passwd Topsurfer Shell Programming and Scripting 11 01-05-2005 12:42 AM
sexist filter Quintab UNIX for Dummies Questions & Answers 5 01-02-2005 04:52 PM
Mail Filter collins UNIX for Advanced & Expert Users 4 11-16-2004 03:46 AM

Reply
 
Submit Tools LinkBack Thread Tools Display Modes
  #1  
Old 03-21-2007
Registered User
 

Join Date: Mar 2007
Posts: 4
Filter using awk

Hi,

I need to filter the output of a command and display omitting the first 6 lines and the last two lines..How can i do this using awk.

command | awk ' NR > 7' will omitt the first 6 lines but dont know how to omit the last two lines.. can anyone help?
Reply With Quote
Forum Sponsor
  #2  
Old 03-21-2007
Registered User
 

Join Date: Mar 2006
Location: Bangalore,India
Posts: 1,397
Check this
Strip 3 header lines and 4 trailer lines
Reply With Quote
  #3  
Old 03-21-2007
dj -------
 

Join Date: Feb 2007
Location: Cochin/Bangalore, India
Posts: 418
Another tweak....
But not a good way to follow..if the file is very very big..as it reads the file twice..

awk 'NR>6 {print $0}' new | tac | awk 'NR>2 {print $0}'
Reply With Quote
  #4  
Old 03-21-2007
Registered User
 

Join Date: Mar 2007
Posts: 4
Thanks ...I tried and it worked..
Reply With Quote
Google The UNIX and Linux Forums
Reply

Thread Tools
Display Modes




All times are GMT -7. The time now is 12:01 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008. All Rights Reserved.Ad Management by RedTyger Visit The Complex Event Processing Blog

Content Relevant URLs by vBSEO 3.2.0