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
XCOPY should do the trick, I use it it in batch files all the time
something like, if you're just trying to target .sh files
XCOPY /E /H /Y /C "%SOURCEDIR%\*.sh" "%TARGETDIR%"
Let me know if you have more questions