All pastes #2120154 Raw Edit

Unnamed

public text v1 · immutable
#2120154 ·published 2012-02-20 13:57 UTC
rendered paste body
#!/bin/bash

: > /tmp/hubahuba 

tail -f /var/log/messages | awk '/unknown/{print $8;fflush()}' | while read line; do
 if ! grep -q $line /tmp/hubahuba; then
    echo $line >> /tmp/hubahuba
    echo found $line
  fi
done