Sie könnten so etwas tun:
tail -F ~/Your.log | while read LINE;do if [[ ! "$LINE" =~ "ping" ]]; then echo $LINE done fi done
Ich habe diese Zeile, die jede Minute in meiner Protokolldatei erscheint:
2016-03-29 21:52:46,226 INFO 200 GET /api/ping (0.0.0.0) 0.34ms
Ich möchte tail
diese Protokolldatei ohne diese Zeilen anzeigen.
Ich habe es versucht:
tail -f log.txt | grep -v "ping"
Sie könnten so etwas tun:
tail -F ~/Your.log | while read LINE;do if [[ ! "$LINE" =~ "ping" ]]; then echo $LINE done fi done