Reputation:
$ find . -name some_file
./some_file
./dir1/some_file
./dir2/some_file
./some_file
./dir1/some_file
./dir2/some_file
Why?
Using CentOS release 5.7 (Final)
Linux version 3.0.52
Upvotes: 1
Views: 66
Reputation:
I had find
aliased as find .
Thanks to @CoryKlein's suggestion of alias find
.
Upvotes: 1