3
votes
3answers
2k views
Groovy execute “cp *” shell command
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 …
0
votes
Groovy execute “cp *” shell command
groovy:000> "sh -c 'cp src/*.txt dst/' ".execute().text
===>
I'm still unable to get that to work.
…
4
votes
Groovy execute “cp *” shell command
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()
…
