123456789101112131415161718192021222324 |
- @echo off
- ::start /wait call b_copy_one.bat 2048
- ::start /wait call b_copy_one.bat dtw
- ::start /wait call b_copy_one.bat get36
- ::start /wait call b_copy_one.bat magictouch
- ::start /wait call b_copy_one.bat msts
- ::start /wait call b_copy_one.bat parkour
- ::start /wait call b_copy_one.bat shennao
- ::start /wait call b_copy_one.bat shudu
- ::start /wait call b_copy_one.bat ssrz
- ::start /wait call b_copy_one.bat ssz
- ::start /wait call b_copy_one.bat xxl
- ::取游戏名字列表
- call b_game_names.bat
- echo gameNameList: %game_names%
- for %%i in (%game_names%) do (
- echo copy %%i
- start /wait call b_copy_one.bat %%i
- )
- pause
|