From 9f4819bd258f7b44652912c9cdb220ffe0a90f58 Mon Sep 17 00:00:00 2001 From: Pierre-Francois Loos Date: Wed, 13 Mar 2019 10:17:20 +0100 Subject: [PATCH] GoInt --- GoInt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 GoInt diff --git a/GoInt b/GoInt new file mode 100755 index 0000000..25eebd1 --- /dev/null +++ b/GoInt @@ -0,0 +1,17 @@ +#! /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 + cp examples/basis."$1"."$2" input/weight + ./bin/IntPak +fi +