b_copy_all.bat 624 B

123456789101112131415161718192021222324
  1. @echo off
  2. ::start /wait call b_copy_one.bat 2048
  3. ::start /wait call b_copy_one.bat dtw
  4. ::start /wait call b_copy_one.bat get36
  5. ::start /wait call b_copy_one.bat magictouch
  6. ::start /wait call b_copy_one.bat msts
  7. ::start /wait call b_copy_one.bat parkour
  8. ::start /wait call b_copy_one.bat shennao
  9. ::start /wait call b_copy_one.bat shudu
  10. ::start /wait call b_copy_one.bat ssrz
  11. ::start /wait call b_copy_one.bat ssz
  12. ::start /wait call b_copy_one.bat xxl
  13. ::取游戏名字列表
  14. call b_game_names.bat
  15. echo gameNameList: %game_names%
  16. for %%i in (%game_names%) do (
  17. echo copy %%i
  18. start /wait call b_copy_one.bat %%i
  19. )
  20. pause