srDFT_G2/G09/Mixed_core/Atoms/vdz/run_g09.sh

11 lines
152 B
Bash
Raw Normal View History

2019-04-01 12:09:35 +02:00
#! /bin/bash
#SBATCH -p xeonv1_mono -c 1 -n 1 -N 1
module load g09/d01
for INP in $( ls *.inp ); do
MOL=${INP%.*}
g09 ${MOL}.inp ${MOL}.out
done