I need to do a .bat copy of a .sh, I don\'t know much Windows cmd. On Linux I could do
mv ...
or
rsync -a SOURCE/ DEST/ --remov
Robocopy did wonders for me:
robocopy c:\cache c:\cache-2012 ?????-2012*.hash /S /MOV
I used it to move all files with certain mask out of c:\cache and its numerous subdirectories.
c:\cache