Total Commander Forum Index Total Commander
Форум поддержки пользователей Total Commander
Сайты: Все о Total Commander | Totalcmd.net | Ghisler.com | RU.TCKB
 
 RulesRules   SearchSearch   FAQFAQ   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Single Post  Topic: Вывод descript.ion в файл удобочитаемый 
Author Message
Tol!k



PostPosted: Tue Sep 13, 2011 02:01    Post subject: Reply with quote

Code:
@echo off &setlocal enableextensions &chcp 1251 >nul

rem Добавление комментариев из descript.ion в файл descript.txt
rem Параметры для ТС: "%F" descript.txt
rem Используется sed
set sed="%Commander_Path%\SCRIPTS\ssed.exe"

if "%~2"=="" exit
for /f "usebackq delims=" %%f in ("%~1") do call :d "%%f" %2
goto :eof

:d
set "f=%~1"
set "f=%f:\=%"
if "%f%"=="%f: =%" (
%sed% -n -e /^%f%\s/p descript.ion |>>%2 %sed% -r -e s/(^\"[^\"]+\")*\s/\1\n/;s/В$/\n/g;s/\\n/\n/g
) else (
%sed% -n -e /"^\"%f%\"\s"/p descript.ion |>>%2 %sed% -r -e s/(^\"[^\"]+\")*\s/\1\n/;s/В$/\n/g;s/\\n/\n/g
)
goto :eof
View user's profile Send private message


Powered by phpBB © 2001, 2005 phpBB Group