This one is correct:
$ find . -name *main.o
./main.o
So, why I can't find *.o
?
$ find . -name *.o
find: paths must precede expression: main.o
Usage: find [-H] [-L] [-P] [-Olevel] [-D help|tree|search|stat|rates|opt|exec] [path...] [expression]
Probably there are more than one file that match
*.o
, while only one file match*main.o
, so, in the first case, shell expansion runs:and this works. In the second case:
And this is why you got error.
In order to prevent this, you should quote
expression
in both command:Put the file pattern in quotes. Otherwise, * is expanded by the shell (resolved to a list of files before find sees it), confusing find.