Last active
July 17, 2023 10:16
-
-
Save Tapped/daa78c08882f33b0c7c3 to your computer and use it in GitHub Desktop.
Uninstall Fuse
This file contains hidden or 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
#!/bin/sh | |
# Call this script as root to fully remove Fuse | |
# For example: 'sudo ./uninstall_fuse.sh' | |
rm -rvf \ | |
/Applications/Fuse.app \ | |
/usr/local/bin/fuse \ | |
/usr/local/bin/uno \ | |
/usr/local/bin/unotest \ | |
/usr/local/share/Uno \ | |
"$HOME/.fuse" \ | |
"$HOME/Library/Application Support/Sublime Text 3/Cache/Fuse" \ | |
"$HOME/Library/Application Support/Sublime Text 3/Installed Packages/Fuse.sublime-package" \ | |
"$HOME/Library/Application Support/Sublime Text 3/Installed Packages/FuseVersion" \ | |
"$HOME/Library/Application Support/Sublime Text 3/Packages/User/Fuse.sublime-settings" \ | |
"$HOME/Library/Services/Fuse preview.workflow" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just a note: the command in macOS is
sudo sh ./uninstall_fuse.sh
— without thesh
this command won't work. :)