File: PrintProperty.java

package info (click to toggle)
jblas 1.2.0-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 46,164 kB
  • sloc: java: 11,050; ansic: 4,152; ruby: 2,290; xml: 289; makefile: 132; sh: 22
file content (7 lines) | stat: -rw-r--r-- 160 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
public class PrintProperty {
    public static void main(String[] args) {
	for (String arg: args) {
	    System.out.println(System.getProperty(arg));
	}
    }
}