Fix UnRAR not uninstalling on Mac

Subscribers:
2,890
Published on ● Video Link: https://www.youtube.com/watch?v=UFYhQId5Zcc



Duration: 1:11
3 views
0


Here's how to Fix UnRAR not uninstalling on Mac. 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 UnRAR for Mac uninstall script codes (beta):

#!/bin/bash

# Uninstall UnRAR on Mac

# Remove the UnRAR binary
echo "Uninstalling UnRAR..."
sudo rm -f /usr/local/bin/unrar

# Remove the UnRAR manual page
echo "Removing UnRAR manual page..."
sudo rm -f /usr/local/share/man/man1/unrar.1

echo "UnRAR has been successfully uninstalled."
exit 0