Skip to content

Instantly share code, notes, and snippets.

@programatt
Last active August 29, 2015 14:00
Show Gist options
  • Save programatt/11388808 to your computer and use it in GitHub Desktop.
Save programatt/11388808 to your computer and use it in GitHub Desktop.
Setup clojure on a debian variant of linux
#!/bin/bash
sudo apt-get update
sudo apt-get install openjdk-7-jdk
mkdir temp
cd temp
wget https://raw.github.com/technomancy/leiningen/stable/bin/lein
sudo mv lein /usr/bin/lein
sudo chmod a+x /usr/bin/lein
cd ~
rm -rf temp
lein
echo "Finished!"
@sethwebster
Copy link

+1 for the echo @ the end.

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