|
|
|
|
|
by marcosdumay
3910 days ago
|
|
find . | grep 'abc' === find . -name 'abc'
find . | grep -i 'abc' === find . -iname 'abc' Here, saved you a pipe :) (Oh, and with -exec and -delete, not needing that pipe is incredibly useful. Find is an incredibly powerful command.) |
|