1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00
filebot/website/scripts/sysenv.groovy
Reinhard Pointner ee6330a10c * include omdb dump in movie index
* allow foreach for AssociativeScriptObjects
* added sysenv script used for printing out system properties and environment variables
2012-12-05 09:36:30 +00:00

12 lines
201 B
Groovy

// filebot -script fn:sysenv
println '# Java System Properties #'
_system.each{
println "$it.key: $it.value"
}
println '# Environment Variables #'
_environment.each{
println "$it.key: $it.value"
}