updated readmes and util scripts for release packaging

This commit is contained in:
Ethan Schoonover
2011-03-24 12:14:44 -07:00
parent f792558e2e
commit 90581c7bfb
15 changed files with 97 additions and 39 deletions
+16
View File
@@ -0,0 +1,16 @@
import java.util.Map;
import java.util.TreeSet;
public class GetEnv {
/**
* let's test generics
* @param args the command line arguments
*/
public static void main(String[] args) {
// get a map of environment variables
Map<String, String> env = System.getenv();
// build a sorted set out of the keys and iterate
for(String k: new TreeSet<String>(env.keySet())) {
System.out.printf("%s = %s\n", k, env.get(k));
}
} }