Multiple rendering

Hi

I’m rendering from CLI and I’d like to process multiple files.

I’ve tried:

blender -b file1.blend -f 1 ; blender -b file2.blend -f 1

but it only renders the first file.

How can I render multiple files?
Do I need a bash or python script ?

Thanks

If UNIX/Linux/OSX then replace the ; with & and you are set (the output is going to be mangled though). On Windows maybe you can preface your commands with start?? (I have no clue about Win so this may be rubbish)

Uh… it was a UNIX newbie question, I was using the wrong operator.

Thanks a lot !