I want to search for all files matching "*.wav" or "*.mp3".
The following command seems correct, but it's not:
Code: Select all
$ find . -type f -iname *.wav
When using any kind of shell-wildcards in the search pattern, they must be quoted:
Code: Select all
$ find . -type f -iname '*.wav'