批处理文件。在文件中写。怎么样?

时间:2010-11-18 13:14:40

标签: batch-file

我有文本文件,在文件中我有行:

param1=text1

param2=text2

我需要写bat文件,它修改了params值。

请帮帮我。

2 个答案:

答案 0 :(得分:1)

来自DOS Batch - File Examples

echo off
REM -- Prepare the Command Processor --
SETLOCAL ENABLEEXTENSIONS
SETLOCAL DISABLEDELAYEDEXPANSION

::BatchSubstitude - parses a File line by line and replaces a substring"
::syntax: BatchSubstitude.bat OldStr NewStr File
::          OldStr [in] - string to be replaced
::          NewStr [in] - string to replace with
::          File   [in] - file to be parsed
:$changed 20100115
:$source http://www.dostips.com
if "%~1"=="" findstr "^::" "%~f0"&GOTO:EOF
for /f "tokens=1,* delims=]" %%A in ('"type %3|find /n /v """') do (
    set "line=%%B"
    if defined line (
        call set "line=echo.%%line:%~1=%~2%%"
        for /f "delims=" %%X in ('"echo."%%line%%""') do %%~X
    ) ELSE echo.
)

答案 1 :(得分:0)

如果您知道参数的所有名称,则可以使用您的值创建文件。

(
    echo set param1=value1
    echo set param2=myValue2
    echo set param3=myValue3
) > config.ini