Skip to content

Instantly share code, notes, and snippets.

@ryanwoodsmall
Last active November 3, 2016 19:33
Show Gist options
  • Save ryanwoodsmall/0562fa2427a393d96bbdfce199e048a2 to your computer and use it in GitHub Desktop.
Save ryanwoodsmall/0562fa2427a393d96bbdfce199e048a2 to your computer and use it in GitHub Desktop.
dump java system properites
/*
* single command version:
* jrunscript -e 'java.lang.System.getProperties().list(java.lang.System.out);'
*/
import java.util.Properties;
public class jsysprop {
public static void main(String[] args) {
System.getProperties().list(System.out);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment