I am trying to find all my GRAPHML files under the current directory in bash. So I ran the following command:
find . -name *.graphml
And I get the error message:
find: paths must precede expression
Usage: find [-H] [-L] [-P] [path...] [expression]
What is wrong with the command above? The strange thing is that it works fine for other regexps.
