#!/bin/bash
if [ -n "`wine --version 2>/dev/null`" ] #Check if wine is installed
then
{
wget -c http://lupus.keystone.gr/zdaemon10803-setup.exe #Download the installer
wine zdaemon10803-setup.exe #The installer appear
echo "Done. Double click the icon on your Desktop for playing it"
}
else
echo Wine is not installed, please install it.
fi


