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
how to remove specific lines from a file bluemoon1 Shell Programming and Scripting 17 10-07-2007 07:40 PM
remove specific lines from a file hcclnoodles Shell Programming and Scripting 14 09-07-2006 09:31 AM
Update specific lines in a file aukequist Shell Programming and Scripting 3 11-15-2005 09:52 AM
Deleting specific lines in a file ramu_1980 Shell Programming and Scripting 4 02-15-2005 09:41 AM
extract specific lines from file apalex UNIX for Dummies Questions & Answers 2 05-15-2001 06:57 AM

Reply
 
Submit Tools LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 08-22-2005
Registered User
 

Join Date: Aug 2005
Posts: 2
Stumble this Post!
How do you specific lines in a file?

I'm looking to show specific lines (eg. 20 through 40) of a series of files in the directory. How do I do this?
Reply With Quote
Forum Sponsor
  #2 (permalink)  
Old 08-22-2005
blowtorch's Avatar
Supporter
 
Join Date: Dec 2004
Location: Singapore
Posts: 2,325
Stumble this Post!
You could use sed. I believe the syntax is as follows:
Code:
sed -n '20,40p' file_name
For files in a directory:
Code:
cd directory_where_files_are
for file_name in *; do
sed -n '20,40p' file_name
done
Reply With Quote
  #3 (permalink)  
Old 08-22-2005
Ygor's Avatar
Moderator
 

Join Date: Oct 2003
Location: -31.96,115.84
Posts: 1,243
Stumble this Post!
Try..
Code:
awk 'FNR>=20 && FNR<=40' file*
Reply With Quote
Google The UNIX and Linux Forums
Reply

Thread Tools
Display Modes




All times are GMT -7. The time now is 03:13 AM.


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

Content Relevant URLs by vBSEO 3.2.0