#!/bin/sh
mypython=$(which python)
echo $mypython
if [ -z "$mypython" ]
then
	echo "No python found"
else
	cd ./contents/code && $mypython QWatch.py
fi
