Last active
January 16, 2018 05:01
-
-
Save ManuelTS/5ed3fa4e5035e489796b374e0654b649 to your computer and use it in GitHub Desktop.
Uninstalls the Unity Editor on Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Uninstalls the Unity Editor on Ubuntu. | |
# | |
# Tested for Unity 2017.30f1 downloaded from https://beta.unity3d.com/download/3c89f8d277f5/public_download.html | |
# and Ubuntu 17.10, but it should work with other version too. | |
# | |
# Unity is expected to be installed in your home folder, otherwise | |
# change the first remove command to your installation path. | |
# | |
# Execute this program as root, e.g. "sudo sh UninstallUnity.sh" | |
rm -rf /home/$USER/Unity* | |
rm -rf /home/$USER/.cache/unity3d | |
rm -rf /home/$USER/.config/unity3d | |
rm -rf /home/$USER/.config/Unity | |
rm -rf /home/$USER/.local/share/unity3d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment