The UNIX and Linux Forums  

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



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #3 (permalink)  
Old 02-05-2008
joeyg's Avatar
joeyg joeyg is offline
premier etoile de match
 

Join Date: Dec 2007
Location: Home of world champion Boston Celtics
Posts: 625
Cool using heads and tails...

> cat f1
line 1
line 2
line 3
line 4
line 5

> head -3 f1 | tail -1
line 3
>

in essence, finding the first three lines of a file, then selecting the last line of what I just found.
Reply With Quote