mpir/build.vc9/file_copy.bat

4 lines
183 B
Batchfile
Raw Normal View History

2008-05-19 09:37:29 -04:00
if not exist %1 ( echo file_copy failure: %1 not found && goto exit )
if exist %2 ( fc %1 %2 > nul && if not %errorlevel 1 goto exit )
echo copying %1 to %2 && copy %1 %2
:exit