I have a batch script that does things to files with a certain extension in the following format:
for %%f in (*.xxx) do (
...
...
)
How, using the same for loop (I don't want to write one for each filetype as there are many) would I go about making this work for filetypes .xxx, .yyy and .zzz?