4
1
mirror of https://github.com/pfloos/quack synced 2024-06-01 10:55:28 +02:00
quack/GoXC

19 lines
318 B
Plaintext
Raw Normal View History

2019-05-07 22:57:57 +02:00
#! /bin/bash
set -e
if [ $# -ne 2 ]
then
echo "You need two arguments [Molecule] [Basis] !!"
fi
if [ $# = 2 ]
then
cp examples/molecule."$1" input/molecule
cp examples/basis."$1"."$2" input/basis
2020-03-14 23:00:44 +01:00
cp basis/"$2" input/basis.qcaml
2019-05-07 22:57:57 +02:00
cp examples/basis."$1"."$2" input/weight
2019-07-09 16:17:10 +02:00
./bin/eDFT
2019-05-07 22:57:57 +02:00
fi