I've gotten tired of writing build process management scripts full of angle brackets to move files around; the task is fairly simple. With a set of directories containing a layout like this:
project A\dist\jar-of-interest.jar
project B\lib\jar-of-interest.jar (old version)
project C\WebContent\WEB-INF\Lib\jar-of-interest.jar (old version)
I would like to locate a utility which would let me do a command of similar structure to
UPDATE /from="project A\dist\jar-of-interest.jar" /to="project B" /to="project C"
and the utility would handle directory descent and matching files. I could write something to handle this, but I've got other deadlines that my time could be better spent chasing...