|
|
|
|
|
by Sodel
3916 days ago
|
|
Sorry if this is pedantic, but actually: find . | grep 'abc' === find . -name '*abc*'
find . | grep -i 'abc' === find . -iname '*abc*'
The -name and -iname options do a verbatim file name check if you don't include those wild-card asterisks. I've been inconvenienced by having to go back and add them often enough that this is burned into my brain. :-) |
|