You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by Chris Chang <ch...@cendec.com> on 2003/02/27 01:32:39 UTC

complex cvs command via "exec"

Folks,

Is it possible to perform the following using task "exec"? any idea?

<!--
cvs export for all files that were changed between tag1 and tag10
-->
cvs -q patch -r tag1 -r tag10 module/dir_a | awk /^Index:/'{print $2}' |
xargs cvs export -l -r tag10

Thanks in advance!

Chris