groovy调用其它groovy脚本定义的方法被调用的groovy脚本/root/common.groovy需要调用common.groovy的脚本
被调用的groovy脚本/root/common.groovy#!groovydef test(){ println "调用正常"}return this //这句一定得写,不然不能调用需要调用common.groovy的脚本#!groovydef function = load "/root/common.groovy"function.test()