#!/bin/bash # # Run TclTkAqua Uninstaller script from disk image. # # RCS: @(#) $Id: TclTkAquaUninstall.command,v 1.2 2005/05/04 14:20:49 das Exp $ # # Copyright (c) 2004-2005, Daniel A. Steffen # # BSD License: c.f. # clear echo "@PROJ@ Uninstaller" echo "=======================" echo echo "This will remove all files in an existing @PROJ@ installation:" echo echo " You need to be allowed to run sudo (generally," echo " this means you need administrator privileges)." echo read -e -t 30 -p "Proceed (yes/no) ? " if [ "${REPLY}" = "yes" ]; then echo sudo /usr/bin/perl /Volumes/@PROJ@-@VERS@/@PROJ@.mpkg/Contents/Resources/tcltkaqua-uninstall.pl fi echo