Skip to content

Instantly share code, notes, and snippets.

@Tapped
Last active July 17, 2023 10:16
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save Tapped/daa78c08882f33b0c7c3 to your computer and use it in GitHub Desktop.
Save Tapped/daa78c08882f33b0c7c3 to your computer and use it in GitHub Desktop.
Uninstall Fuse
#!/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"
@bentstamnes
Copy link

Just a note: the command in macOS is sudo sh ./uninstall_fuse.sh — without the sh this command won't work. :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment