How to uninstall? #819
-
So, I installed
Now I want to re-install it with Homebrew. |
Beta Was this translation helpful? Give feedback.
Answered by
ajeetdsouza
May 21, 2024
Replies: 2 comments
-
zoxide is simply a binary: rm "$(which zoxide)" |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ajeetdsouza
-
Thanks! According to the output from installation script: $ curl -sSfL https://raw.githubusercontent.com/ajeetdsouza/zoxide/main/install.sh | sh
Detected architecture: x86_64-unknown-linux-musl
Downloaded package: zoxide.tar.gz
Installed zoxide to /home/username/.local/bin
Installed manpages to /home/username/.local/share/man
zoxide is installed! So for uninstalling it fully (with man pages), I suppose it should be: $ rm "$(which zoxide)"
$ rm /home/username/.local/share/man/man1/zoxide* BTW, why don't you simply provide uninstall script for that matter? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
zoxide is simply a binary:
rm "$(which zoxide)"