up vote 7 down vote favorite
4
share [g+] share [fb]

I want to copy text files and only text files from src/ to dst/

groovy:000> "cp src/*.txt dst/".execute().text       
===> 
groovy:000> 

You can see the command executes w/out error but the file "src/test.txt" does not get copied to dst/

This also fails

groovy:000> "cp src/* dst/".execute().text       
===> 
groovy:000> 

However...

"cp src/this.txt dst/".execute().text

works

Also,

"cp -R src/ dst".execute().text

works

Why dose the wild card seem to cause my command to silently fail?

link|improve this question

50% accept rate
feedback

3 Answers

up vote 3 down vote accepted

Wildcard expansion is performed by the shell, not by cp (or groovy). Your first example is trying to copy a file named *. You could make your command "sh -c 'cp ...'"

link|improve this answer
feedback

Thanks tedu for getting me half way there.

I believe the reason that his solution didn't work was because of an 'escaping' issue.

For instance...

"sh -c 'ls'".execute()

works. But...

"sh -c 'ls '".execute()

does not.

There is probably a way to escape it properly in line there but the workaround I'm using is to pass a string array to Runtime.getRuntime().exec

command = ["sh", "-c", "cp src/*.txt dst/"]
Runtime.getRuntime().exec((String[]) command.toArray())

works beautifully!

link|improve this answer
2  
I think you could simplify that with: command = .... command.execute() As arrays also understand execute – TimM Jan 6 '10 at 21:59
The reason that "sh -c 'cp src/*.txt dst/''" does not work is because Groovy will interpret a quoted string argument with whitespace as multiple arguments. So groovy is actually executing sh with the following args: arg1 = -c, arg2 = 'cp, arg3 = src/*.txt, arg4 = dst/' Such a command will result in an "Unterminated quoted string" error. You have the correct solution, which is to use an array. Also, @TimM is right, you can simplify the above to ["sh", "-c", "cp src/*.txt dst/"].execute() – BennyFlint Jun 13 '11 at 20:32
If you're building your commands dynamically the solution with sh -c and an array is the best solution. Just do: def command = (generate command here) def proc = ["sh", "-c", command].execute() – henrik Nov 7 '11 at 22:13
feedback
groovy:000> "sh -c 'cp src/*.txt dst/' ".execute().text
===>

I'm still unable to get that to work.

link|improve this answer
Hi. see my blurb about getting the error stream as well as the standard out stream in stackoverflow.com/questions/159148/… and I think you will find out what the problem is. – Bob Herrmann Oct 12 '08 at 3:04
feedback

Your Answer

 
or
required, but never shown

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