mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-11 03:45:06 -05:00
ee6330a10c
* allow foreach for AssociativeScriptObjects * added sysenv script used for printing out system properties and environment variables
12 lines
201 B
Groovy
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"
|
|
}
|