Skip to content

Instantly share code, notes, and snippets.

@kbridge
Created October 23, 2023 07:07
Show Gist options
  • Save kbridge/b0afc018afcbe8c74fc6fa6ce0821118 to your computer and use it in GitHub Desktop.
Save kbridge/b0afc018afcbe8c74fc6fa6ce0821118 to your computer and use it in GitHub Desktop.
#!/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