被调用的groovy脚本/root/common.groovy

#!groovy
def test(){
println "调用正常"
}

return this //这句一定得写,不然不能调用

需要调用common.groovy的脚本

#!groovy
def function = load "/root/common.groovy"
function.test()