tail -f | sed

Harald Barth haba at kth.se
Wed Apr 16 13:54:59 CEST 2008


> tail -f -n 100 /var/log/httpd-access.log | sed -e '/^192\.168\..*/ d'
> -e 's/^/  /'

Det är ju lite RTFM varning, men fritt ur huvudet, otestad

awk '
    $0 !~ "^192\.168\." { 
       	  		sub("^","  "); 
			print
    }
'
Harald.


More information about the Stacken mailing list