Skip to content

Instantly share code, notes, and snippets.

@jasontedor
Last active August 24, 2019 14:51
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jasontedor/a1a38cfa646c186b8736 to your computer and use it in GitHub Desktop.
Save jasontedor/a1a38cfa646c186b8736 to your computer and use it in GitHub Desktop.
Cloning the OpenJDK sources
#!/bin/bash
hg clone http://hg.openjdk.java.net/jdk10/jdk10 && cd jdk10 && chmod +x get_source.sh && ./get_source.sh
#!/bin/bash
hg clone http://hg.openjdk.java.net/jdk8/jdk8 && cd jdk8 && chmod +x get_source.sh && ./get_source.sh
#!/bin/bash
hg clone http://hg.openjdk.java.net/jdk9/jdk9 && cd jdk9 && chmod +x get_source.sh && ./get_source.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment