Skip to content

Instantly share code, notes, and snippets.

@liunian
Created July 5, 2013 06:29
Show Gist options
  • Save liunian/5932390 to your computer and use it in GitHub Desktop.
Save liunian/5932390 to your computer and use it in GitHub Desktop.
批量复制文件来简单测试是否扩容,可以直接copy大文件,不用等测试工具动态生成小文件
@echo off
for /l %%i in (1,1,115) do (
@echo %%i...
copy sourceFile Path/%%i_DesinationFile
)
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment