srDFT_G2/G09/Large_core/Molecules/avtz/create_input.sh
2019-04-04 11:10:45 +02:00

18 lines
193 B
Bash
Executable File

#! /bin/bash
if [ $# != 1 ]
then
echo "Please provide template file"
fi
if [ $# = 1 ]
then
for XYZ in $( ls *.xyz ); do
MOL=${XYZ%.*}
cat $1 ${MOL}.xyz > ${MOL}.inp
done
fi