#!/bin/bash ################################### #Variables app="`echo which`" msg1="$app: no superkaramba in ($PATH)" ##########Start Functions########## function does_superkaramba () { if [[ `which superkaramba`==$msg1 ]] then echo "superkaramba not installed, please install it then re-run this script" fi } does_superkaramba