6 lines
121 B
Groovy
6 lines
121 B
Groovy
|
|
#!/usr/bin/env groovy
|
||
|
|
|
||
|
|
def program = getClass().protectionDomain.codeSource.location.path
|
||
|
|
|
||
|
|
println "Program: " + program
|