#!/bin/sh
app=/usr/share/pdb2pqr/propka30/propka.py
if [ -x $app ]; then
	$app $*
else
	echo "No executable at '$app'."
	exit -1
fi
