#!/bin/bash # g++ -c -I/$HOME/include hyperball_monte_carlo_prb.cpp if [ $? -ne 0 ]; then echo "Errors compiling hyperball_monte_carlo_prb.cpp" exit fi # g++ hyperball_monte_carlo_prb.o /$HOME/libcpp/$ARCH/hyperball_monte_carlo.o -lm if [ $? -ne 0 ]; then echo "Errors linking and loading hyperball_monte_carlo_prb.o." exit fi # rm hyperball_monte_carlo_prb.o # mv a.out hyperball_monte_carlo_prb ./hyperball_monte_carlo_prb > hyperball_monte_carlo_prb_output.txt if [ $? -ne 0 ]; then echo "Errors running hyperball_monte_carlo_prb." exit fi rm hyperball_monte_carlo_prb # echo "Program output written to hyperball_monte_carlo_prb_output.txt"