使用unix shell从Groovy编写文件

时间:2015-11-10 16:29:46

标签: groovy

我想从groovy写文件。 我试过执行shell,但由于某种原因它不起作用。

this_job_id = 43294;
"echo THIS_JOB_ID=${this_job_id.toString()} > build_groovy.properties".execute()

由于某种原因,build_groovy.properties无法创建

1 个答案:

答案 0 :(得分:1)

只需从groovy写一个文件

new File('build_groovy.properties').text = "THIS_JOB_ID=$this_job_id"