0 votes
in DevOps by

How To Run Shell Commands in Groovy?

1 Answer

0 votes
by

Groovy adds the execute method to String to make executing shells fairly easy

println "ls".execute().text

...