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

19 lines
292 B
Plaintext
Raw Normal View History

2019-02-07 22:49:12 +01: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-01-17 15:31:38 +01:00
cp basis/"$2" input/basis.qcaml
# ./bin/IntPak
2019-03-19 10:13:18 +01:00
./bin/QuAcK
2019-02-07 22:49:12 +01:00
fi