1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-14 05:15:03 -05:00
filebot/website/scripts/sysenv.groovy

12 lines
201 B
Groovy
Raw Normal View History

// 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"
}