#!/bin/bash
if [[ $1 == /* ]] ; then
	nom=$1
else
	nom=$(pwd)/$1
fi

if [ "$1" != "" ]; then 
	cd /usr/share/csuper/
	./csuper-gtk "$nom"
else
	cd /usr/share/csuper/
	./csuper-gtk
fi
