Y
Hacker News
new
|
ask
|
show
|
jobs
by
rustyminnow
1599 days ago
If you need to include/exclude multiple things, you can go `grep pat --exclude={foo,bar,baz}` which expands to: `grep pat --exclude=foo --exclude=bar --exclude=baz`. Much easier than typing out the flag multiple times
1 comments
zwieback
1599 days ago
or even something like --exclude={foo,ba[rz]} , probably getting the syntax wrong
link