Comment 3 for bug 1786625

Revision history for this message
Andreas Metzler (k-launchpad-downhill-at-eu-org) wrote :

Hello,

If you run "find . -name *.txt" in a directory containing foo.txt and bar.txt then the shell expands *.txt before executing find, i.e. you would be running "find . -name foo.txt bar.txt" which produces a syntax error. Either quote ('*.txt') or escape (\*.txt) the argument.

Closing.