View Single Post

  #2 (permalink)  
Old 11-23-2006, 03:35 AM
nixcraft's Avatar
nixcraft nixcraft is offline
Never say die
User
 
Join Date: Jan 2005
Location: BIOS
My distro: Ubuntu
Posts: 1,060
Rep Power: 10
nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute
Default

Use simple grep and redirection. For example find all occurance of error and store to /tmp/error.log file
Code:
grep -i 'error' /var/log/message > /tmp/error.log
Rest of the implementation is depend upon what you would like to write.. let us know the details.
__________________
Vivek | My personal blog
Linux Evangelist
Play hard stay cool
Reply With Quote