#!/bin/sh
# Generic clickable shell script for a Python script running under macOS on an IDeATe cluster MBP.
# Runs the Python script with the related name.

# Run the program from its own directory.
cd $(dirname $0)

CMDNAME=$(basename $0)
/opt/local/bin/python3.5 ${CMDNAME/.command/.py}
