vote up 2 vote down star
1

In order to get my setup a bit closer to "one click deployment", I would like to use groovy scripts to start/stop other processes controlled by bat scripts, running in different parts of the filesystem and even on different machines.

How to execute these scripts and how to do it from their respective working directory?

I know Java's

java.lang.Runtime's exec()

However there are lots of issues with this and I wondered if Groovy had some kind of shorthand for this as well?

Thanks!

flag

71% accept rate

2 Answers

vote up 1 vote down check

Groovy added an execute() method to plain old String, so try this:

println "ls -la".execute().text
link|flag
I'm still not sure about changing the working directory. – John Flinchbaugh Aug 26 at 13:35
Thanks so far! Like it a lot! – raoulsson Aug 26 at 13:46
vote up 1 vote down

The execute() method can be used to change directories if you prefix it with the "cmd /c" command, and then use ampersand (assuming Windows) to chain commands together.

Example, assuming you want to go to subdirectory subdir and run a couple of batch files from there:

println "cmd /c cd subdir & batch1.bat & batch2.bat".execute().text

Not sure if there isn't a better way, but this does work.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.