convert-p2p-to-dat.cmd 684 B

123456789101112131415161718192021222324252627
  1. @echo off
  2. chcp 65001
  3. ::cls
  4. ::color A
  5. setlocal EnableExtensions
  6. setlocal ENABLEDELAYEDEXPANSION
  7. set SRC=%~1
  8. if not defined SRC call :PRINT_USAGE
  9. set DEST=%~2
  10. if not defined DEST call :PRINT_USAGE
  11. if not exist "%SRC%" @echo.File "%SRC%" doesn't exist
  12. if /i "%SRC%" equ "%DEST%" @echo.File "%SRC%" and "%DEST%" are the same
  13. :: Main cycle
  14. ::for /F "usebackq tokens=1,2* delims=:" %%i in (`type "%SRC%" 2^>NUL`) do @echo.%%j , 000 , %%i>>"%DEST%"
  15. for /F "usebackq tokens=1,2* delims=:" %%i in ("%SRC%") do @echo.%%j , 000 , %%i>>"%DEST%"
  16. echo.&pause&goto:eof
  17. :PRINT_USAGE
  18. echo:
  19. echo USAGE:
  20. echo %~n0 ^<source^> ^<destination^>
  21. exit /b !ERRORLEVEL!