Skip to content

Instantly share code, notes, and snippets.

@plaflamme
Last active May 23, 2017 13:14
Show Gist options
  • Save plaflamme/818e966f242bc6cfd16748e2affc9f97 to your computer and use it in GitHub Desktop.
Save plaflamme/818e966f242bc6cfd16748e2affc9f97 to your computer and use it in GitHub Desktop.
import java.util.Map;
public class ListVars {
public static void main(String[] args) {
Map<String, String> env = System.getenv();
for (String key : env.keySet()) {
System.out.println(key + ": " + env.get(key));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment