You must log in or register to comment.
I don’t mind the order of path, arguments and options, but what the hell is the deal with long arguments with a single dash? i.e.
-name
instead of—-name
What’s up with find? I’ve got so used to
fd
that I don’t understand what this is referring toWhen you want to find something in a different path than your current one you have to supply it as the first argument. When you try to do
find -name foo.bar /path
it will complain that the path should be the first argument. So it knows what you’re trying to do and instead of doing it it just complaints.