日期:2014-05-17 浏览次数:20718 次
@echo off for %%a in (*.txt) do ( if not exist tmp.txt (copy /y %%a tmp.txt) else (copy /y /b tmp.txt+%%a) ) pause