suppose a directory with two or more files matching a glob pattern. Say files "one.md" and "two.md".
The "find" command breaks with any glob pattern matching more than one file in Powershell.
find . -name '*.md'
# or
find . -name "*.md"
find: Unrecognized flag: 'one.md'
This does work from ComSpec cmd.exe with double quotes only:
suppose a directory with two or more files matching a glob pattern. Say files "one.md" and "two.md".
The "find" command breaks with any glob pattern matching more than one file in Powershell.
This does work from ComSpec cmd.exe with double quotes only: