how can I uninstall zoxide #506
-
I installed zoxide on Ubuntu 20.04 with this command now I want to uninstall. How can I do this?
|
Beta Was this translation helpful? Give feedback.
Answered by
ajeetdsouza
Dec 26, 2022
Replies: 2 comments 2 replies
-
zoxide is a portable binary, so it's fairly simple to remove: rm -i "$(which zoxide)" You might also want to remove manpages: rm -i "$HOME/.local/share/man/man1/zoxide"* |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ajeetdsouza
-
I had an issues that when executing ``, I got message - $ cd .
zsh: command not found: z then executing
In order to unalias, simply run $ unalias cd Then result would be this: $ which cd
cd: shell built-in command |
Beta Was this translation helpful? Give feedback.
2 replies
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
zoxide is a portable binary, so it's fairly simple to remove:
rm -i "$(which zoxide)"
You might also want to remove manpages: