Tol!k

|
Posted: Thu Sep 09, 2010 12:16 Post subject: |
|
|
Code: | @echo off &chcp 1251 >nul
setlocal enableextensions
rem Параметры: список.txt
for /f "usebackq tokens=1,* delims=;" %%f in ("%~1") do call :c "%%f" "%%g"
goto :eof
:c
set "comment=%~2"
if "%comment:~0,1%"==" " set "comment=%comment:~1%"
if exist %1 >"%~1:comment.txt" echo,%comment%
goto :eof
|
|
|