One of the big reasons why find
makes things awesome
if I do this:
find -path *ncf
or this:
find -path ncf*
I get no results, but if I do this:
find -path *ncf.js
I get a matching file. Why is that? Is it a peculiarity of find, or something more grandiose? Does anyone have the home address of the guy who wrote find
?
find
to get the pattern, not the expanded list of filenames. – Kusalananda Jun 25 '18 at 08:09