question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

A single * matches files in sub directories

See original GitHub issue
> minimatch("a\\b", "*")
false
> minimatch("a", "*")
true

But this library produces true in both cases.

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:11 (6 by maintainers)

github_iconTop GitHub Comments

1reaction
yufeihcommented, Jan 3, 2019

Thank you Kevin, works like a charm 👍 👍 👍

0reactions
yufeihcommented, Jan 3, 2019

Problem fixed. Thank you for the swift response, as always 👍

Read more comments on GitHub >

github_iconTop Results From Across the Web

find matching files in one directory and sub directories
find matching files in one directory and sub directories · instead of find . , try find /path/to/my/directory/ and so, -iname '*.qp'. –...
Read more >
How to find all files in subdirectories that match pattern and ...
Any advice on how to remove this pattern from all files within subdirectories matching it would be very much appreciated.
Read more >
Delete matching files in all subdirectories - linux
Remove all *.swp files underneath the current directory, use the find command in one of the following forms: find .
Read more >
Find all files in the current directory and its subdirectories ...
To find files matching a regular expression, use find with the -regex option: find [startingPath] -type [fileType] -regex ...
Read more >
Copy all files matching pattern from dir and subdirs into a ...
Try: find src/ -type f | grep -i so$ | xargs -i cp {} dst.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found