@homey: Thanks - worked great
But I've got one more question:
By using find in combination with regex, the command for listing all ogg-files is:
Code:
find . -regex '.*\.ogg'
and that works for me. But when I want to have an OR within (to search for oggs and wma-files for example)
it doesn't work, and I tried a lot, but couldn't get it work. This doesn't work:
Code:
find . -regex '.*\.ogg|.*\.wma'
Any ideas?
Thanks in advance,
coder22