The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




Thread: Tail??
View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 06-15-2006
jim mcnamara jim mcnamara is offline Forum Staff  
...@...
  
 

Join Date: Feb 2004
Location: NM
Posts: 5,763
You want the next to the last line, right? And just the one line. And add the one line another file. Then wait 15 minutes and do it again?
Code:
while true
do
     tail -2 logfile | head -1 >>  anotherfile.log
     sleep 900
done