【已解決】批處理如何將多個BAT代碼合而為一最后由 思想之翼 于 -3-6 16:34若有如下若干BAT代碼,如何將其合而為一?懇望再次得到幫助。@echo offfor /f skip=10 delims= %%i in ('dir /b /a-d /o-n /s C:01lishi*.txt') do (copy %%i C:數(shù)據(jù)1.txtgoto :eof)@echo offfor /f skip=10 delims= %%i in ('dir /b /a-d /o-n /s C:02lishi*.txt') do (copy %%i C:數(shù)據(jù)2.txtgoto :eof)@echo offfor /f skip=10 delims= %%i in ('dir /b /a-d /o-n /s C:03lishi*.txt') do (copy %%i C:數(shù)據(jù)3.txtgoto :eof).....@echo offfor /f skip=10 delims= %%i in ('dir /b /a-d /o-n /s C:210lishi*.txt') do (copy %%i C:數(shù)據(jù)210.txtgoto :eof)