I was looking for differences in the find command with double quotes and without quotes.
I found something odd. I have two files:
xWrapper.javaYWrapper.java
and some in the pattern *Wrapper.java.
I ran
find . -name *Wrapper.java
which should return the first file that matches the pattern, because the command expands as
find . -name xWrapper.java yWrapper.java ..
But as a result, I got the all the files of that form. Why did it return all the files matching that pattern?