We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Would it be an idea to add support for searching multiple extensions?
E.g. if i want to find both .h and .c files in a folder: fd -e h -e c
.h
.c
fd -e h -e c
Or should i use regex patterns?
The text was updated successfully, but these errors were encountered:
Interesting idea. This could actually have a similar implementation as #177.
Sorry, something went wrong.
faf934d
So how do I find audio files (*.mp3|m4a|ogg|opus|flac) with the word love in their name?
$ fd 'love.*\.(mp3|m4a|ogg|opus|flac)$' media/audio/music/Al_Green/Love_And_Happiness.mp3 ...
No branches or pull requests
Would it be an idea to add support for searching multiple extensions?
E.g. if i want to find both
.h
and.c
files in a folder:fd -e h -e c
Or should i use regex patterns?
The text was updated successfully, but these errors were encountered: