[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: GU: How can I submit a lot of jobs at the same time
In message <9607241735.AA11228@beta.df.ufpe.br> you write:
>Dear Friends,
>I started to use Gamess last friday and I already have a lot of moleculas
>to make calculations. So, instead of wait for the end of one calculation to
>submit another, I tryed to make a script. I use the Gaussian too and with
>gaussian I just need to write
>g92 JOB1
>g92 JOB2
>...
>and run this script (after I turn it executable using chmod +x script).
>But when I tryed to make the same thing to make a script for the gamess
>jobs, I failed.
>I wrote:
>gms JOB1 > & JOB1.out
>gms JOB2 > & JOB2.out
>...
If you are running csh your script should look like this
#! /bin/csh
gms JOB1 >& JOB1.out
gms JOB1 >& JOB1.out
With sh:
#! /bin/sh
gms JOB1 > JOB1.out
gms JOB1 > JOB1.out
Victor
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
*** Institute of Chemical Physics in Chernogolovka ***
* Russian Academy of Sciences *
* Dr. Victor M. Anisimov *
* senior chemist *
*** vam@kon.icp.ac.ru ***
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^