Noob linux here trying to understand wildcard matching when using find.
#find /opt/spark/jars -name data*
#find /opt/spark/jars -name datan*
/opt/spark/jars/datanucleus-rdbms-3.2.9.jar
/opt/spark/jars/datanucleus-core-3.2.10.jar
/opt/spark/jars/datanucleus-api-jdo-3.2.6.jar
How come data* doesn't match anything but datan* does?