Skip to content

Instantly share code, notes, and snippets.

@petekneller
Created February 23, 2015 15:56
Show Gist options
  • Save petekneller/0b489796e0e80e3730c3 to your computer and use it in GitHub Desktop.
Save petekneller/0b489796e0e80e3730c3 to your computer and use it in GitHub Desktop.
Dumping system props (drop this in a dir and do "sbt run")
package props
object Main extends App {
import System._
import scala.collection.JavaConversions._
getProperties.stringPropertyNames().foreach{ pn => println(s"$pn -> ${getProperty(pn)}") }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment