Created
October 23, 2023 07:07
-
-
Save kbridge/b0afc018afcbe8c74fc6fa6ce0821118 to your computer and use it in GitHub Desktop.
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/bash | |
# the uninstall script corresponding to the install script here: | |
# https://clojure.org/guides/install_clojure#_linux_instructions | |
set -e | |
prefix_dir=/usr/local | |
rm -rfv $prefix_dir/lib/clojure | |
rm -fv $prefix_dir/bin/clj | |
rm -fv $prefix_dir/bin/clojure | |
rm -fv $prefix_dir/share/man/man1/clojure.1 | |
rm -fv $prefix_dir/share/man/man1/clj.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment