Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
julian_sark
on Dec 14, 2022
|
parent
|
context
|
favorite
| on:
Tips for analyzing logs
> cat file | grep -v THING1 | grep -v THING2 | grep -v THING3 | grep -v THING4
Keyboard manufacturers HATE this simple trick:
grep -vE "THING1|THING2|THING3|THING4" file
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
Keyboard manufacturers HATE this simple trick:
grep -vE "THING1|THING2|THING3|THING4" file