#!/bin/sh

# A script to uninstall SoftMaker Office.

clear
echo ""
echo "This script will remove SoftMaker Office."
echo ""
echo -n "Do you want to continue (y/n)? [n] " 
read inp
if [ "$inp" != "y" ]
then
  echo "Installation aborted." 
  echo "Press Return to close."
  read inp
  exit
fi


