#!/bin/bash
if [ -z $EXECUTION_DIR ];
then
	EXECUTION_DIR=$ISSM_DIR/execution
fi

DIR=$(ls -rtd1 $EXECUTION_DIR/* | tail -n1)
echo "Execution directory: $DIR"
tail -f $DIR/*.outlog
