I need to make a .bat copy of .sh, I don't know a lot of Windows cmd. On Linux, I could do
mv ...
or
rsync -a SOURCE/ DEST/ --remove-sent-files --ignore-existing --whole-file
but Windows "move" cannot do the same
there may be a simple alternative to Windows, simpler and more efficient than
for /R c:\sourceFolder\ %%G in (*) do ( move /Y "%%G" c:\destinationFolder\ )
Linux mv seems to be updating directory pointers, but will the aforementioned Windows command do the heavy stuff? I think this is not a good idea for large folders that I need to move frequently
user1125394
source share