Hello, thank you for your help.
So first of all I have a lot of .gjf files (Gaussian acceptable format) and I want to run Gaussian on all of them to get energy log files. I think that's a standard procedure in computational chemistry. I've got about 3000 of them so obviously I can't do them individually without making mistakes.
So if I were to run Gaussian on an individual file I would do it like this:
g09 5DKXA_TRP-554-A_ASP-443-A.log &
That basically means import ( < ) a file into Gaussian (g09), and redirect the output with errors ( &>) to a log file after Gaussian does its thing, and then finally run Gaussian in the background to free up the terminal ( & ).
So if I wanted to do this operation on every *.gjf file how would I do it?
Thank you very much for your help!