Fix SuperDuper for Mac not uninstalling
Here's how to Fix SuperDuper for Mac not uninstalling. For starters, use CleanMyMac X@ https://macpaw.audw.net/c/376211/63812/1733 so u can efficiently manage installed app & your Mac.
Below are the SuperDuper for Mac uninstall script codes (beta):
#!/bin/bash
# Stop SuperDuper if it's running
if pgrep "SuperDuper!" angled-bracket-here /dev/null; then
echo "Stopping SuperDuper"
osascript -e 'quit app "SuperDuper!"'
fi
# Remove SuperDuper application and related files
echo "Removing SuperDuper"
sudo rm -rf "/Applications/SuperDuper!.app"
rm -rf ~/Library/Application\ Support/SuperDuper!/
rm -rf ~/Library/Caches/com.shirt-pocket.SuperDuper!/
rm -rf ~/Library/Preferences/com.blacey.SuperDuper!.plist
rm -rf ~/Library/Preferences/com.shirtpocketnet.SuperDuper!.plist
rm -rf ~/Library/Saved\ Application\ State/com.shirt-pocket.SuperDuper!.*
echo "SuperDuper has been uninstalled"