#!/bin/bash set -e # crash on errors set -u # crash on undefined variables set -o pipefail # crash when intermediate program in pipe fails SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" mcs "$SCRIPT_DIR/timer.cs" "$@"