Skip to content

Instantly share code, notes, and snippets.

@gchait
Created December 13, 2025 13:05
Show Gist options
  • Select an option

  • Save gchait/e7fa44e38dce5a8d4c803932149ce2e0 to your computer and use it in GitHub Desktop.

Select an option

Save gchait/e7fa44e38dce5a8d4c803932149ce2e0 to your computer and use it in GitHub Desktop.
Run Java stdlib from Bash without JShell
echo 'public class X{public static void main(String[]a)throws Exception{System.out.println(java.net.InetAddress.getLocalHost().getCanonicalHostName());}}' > X.java \
&& javac X.java && java X && rm X.java X.class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment