Combine extensions with glob #1546
-
Is it possible to combine the extension option with glob? So something like: fd -e ts -g 'tests/**' This doesn't work currently. Is there a better way? |
Beta Was this translation helpful? Give feedback.
Answered by
tavianator
May 2, 2024
Replies: 1 comment 2 replies
-
From the man page:
So something like this should work: $ fd -e td -g '**/tests/**' --full-path |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
ryands17
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From the man page:
So something like this should work:
$ fd -e td -g '**/tests/**' --full-path