def env = System.getenv()
//Print all the environment variables.
env.each{
println it
}
// You can also access the specific variable, say 'username', as show below
String user= env['USERNAME']
Friday, January 30, 2009
Read Environment Variables with Groovy
Environment variables can be easily accessed with Groovy with getenv() method as shown below.
Subscribe to:
Posts (Atom)