On Tue, Aug 29, 2023 at 09:29:35AM -0700, Larry Martell wrote:
> find . -regex '.*\.snd$' -print

That is an incredibly silly way to write

    find . -name '*.snd' -print

But the bigger issue is that audio files may have MANY different
extensions, with .snd being only one of them.

Reply via email to