mirror of
https://github.com/mitb-archive/filebot
synced 2025-03-10 06:20:27 -04:00
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"
|
||
|
}
|