Can perl scripts be executed from within a Gradle script? -
is possible call existing perl script within gradle task? i've tried searching can't find @ all, surprising (i found stuff calling gradle within perl not other way around).
does know if , how this?
sure can gstring
. example.
def process = "perl somescript".execute() def returnvalue = process.waitfor() println "{$returnvalue}: text execution: ${process.text}"
Comments
Post a Comment