0

私は、この問題に対するよく説明された答えを探して、stackoverflowとネットを一般的に探し回っています。

自分自身をインストールして .ini ファイルを読み取るソフトウェアがあります。この .ini は可変サイズで可変行番号です。各行のスタイルは次のようなものです。

setting1=contents
setting2=more,contents
setting3=different type of contents
setting4=youget/theidea

このテキスト ファイルで特定の行を検索する必要があります。たとえば、次のようにします。

Username=Tommy
Servername=HAL2000

次に、等号の後の値を置き換えます (つまり、Tommy を Timmy に変更します)。私の問題は、私が見つけて取り入れようとしたすべてのスクリプトが、上記の値を変数として認識するか (つまり、ユーザー名が値 "Tommy" を持つ変数になる)、または Tommy を .ini ファイルに置き換えようとすると、ファイル内のすべての行を Username=Tommy に置き換えることになります。

それ以来、これらのスクリプトは両方とも削除して先に進みましたが、考えれば考えるほど、戻ってこのスクリプトを実行したくなります。

唯一のルールは、Windows コマンド ラインで XP ネイティブのコマンドを使用する必要があるということです。サードパーティ プログラム、python、perl、.bat ファイルから実行できる Windows コマンド ライン以外はありません。

4

2 に答える 2

1

a_horse_with_no_name ソリューションは、要件に対して完全にうまく機能します。CALL を排除することで、少し不器用で効率的にすることができます。MOVE コマンドは、元のファイルを新しいデータで上書きするために使用されます。

@echo off
>"test.ini.new" (
  for /f "usebackq tokens=1* delims==" %%A in ("test.ini") do (
    if %%A==Username (
      echo %%A=Timmy
    ) else if %%A==Servername (
      echo %%A=HAL2001
    ) else echo %%A=%%B
  )
)
move /y "test.ini.new" "test.new"

上記は、ファイル内のすべての行が指定された形式を満たしていることを前提としています。しかし、多くの場合、.INI ファイルには、保持する必要がある形式に適合しないコメント行も含まれています。FOR ループ ソリューションは、それをサポートするように拡張できますが、さらに複雑になり、遅くなります。

行の順序が重要であると明示的に述べたことはありません。.INI ファイルの行の順序は重要ではないことがよくあります。これは、FINDSTR を使用して既存の Username と Servername の行を削除し、新しい値を末尾に追加する、非常に単純なソリューションです。形式に関係なく、変更されていないすべての行が保持されます。変更された行は常に最後に表示されます。

@echo off
>"test.ini.new" (
  findstr /v "^Username= ^Servername=" "test.ini"
  echo Username=Timmy
  echo Servername=HAL2001
)
move /y "test.ini.new" "test.new"

Batch は、テキスト ファイルを処理するためのプラットフォームとしては不十分です。多くの場合、遅く、過度に複雑です。あなたのファイルは小さく、要件は比較的単純です。しかし、一見単純な要求の多くは、純粋なバッチで行うには厄介です。

JScript はテキストの処理にはるかに優れており、XP 以降にネイティブです。正規表現を完全にサポートしています。テキスト ファイルの内容に対して検索および置換操作を実行するために使用できるハイブリッド バッチ/JScript ユーティリティ スクリプトを作成しました。これは非常に高速で、強力で、使いやすいです。問題の解決策は次のように実装されます。

@echo off
type "test.ini" | repl "^Username=.*$" "Username=Timmy" | repl "^Servername=.*$" "Servername=HAL2001" >"test.ini.new"
move /y "test.ini.new" "test.new"

またはもう少し簡潔に:

@echo off
type "test.ini" | repl "^(Username=).*$" "$1Timmy" | repl "^(Servername=).*$" "$1=HAL2001" >"test.ini.new"
move /y "test.ini.new" "test.new"

以下は、REPL.BAT ユーティリティ スクリプトです。完全なドキュメントがスクリプト内に埋め込まれています。ドキュメントには、コマンド プロンプトから と入力してアクセスすることもできますREPL /?。スクリプトは、現在のディレクトリか、PATH のどこかにある必要があります。

@if (@X)==(@Y) @end /* Harmless hybrid line that begins a JScript comment

::************ Documentation ***********
:::
:::REPL  Search  Replace  [Options  [SourceVar]]
:::REPL  /?
:::
:::  Performs a global search and replace operation on each line of input from
:::  stdin and prints the result to stdout.
:::
:::  Each parameter may be optionally enclosed by double quotes. The double
:::  quotes are not considered part of the argument. The quotes are required
:::  if the parameter contains a batch token delimiter like space, tab, comma,
:::  semicolon. The quotes should also be used if the argument contains a
:::  batch special character like &, |, etc. so that the special character
:::  does not need to be escaped with ^.
:::
:::  If called with a single argument of /? then prints help documentation
:::  to stdout.
:::
:::  Search  - By default this is a case sensitive JScript (ECMA) regular
:::            expression expressed as a string.
:::
:::            JScript syntax documentation is available at
:::            http://msdn.microsoft.com/en-us/library/ae5bf541(v=vs.80).aspx
:::
:::  Replace - By default this is the string to be used as a replacement for
:::            each found search expression. Full support is provided for
:::            substituion patterns available to the JScript replace method.
:::            A $ literal can be escaped as $$. An empty replacement string
:::            must be represented as "".
:::
:::            Replace substitution pattern syntax is documented at
:::            http://msdn.microsoft.com/en-US/library/efy6s3e6(v=vs.80).aspx
:::
:::  Options - An optional string of characters used to alter the behavior
:::            of REPL. The option characters are case insensitive, and may
:::            appear in any order.
:::
:::            I - Makes the search case-insensitive.
:::
:::            L - The Search is treated as a string literal instead of a
:::                regular expression. Also, all $ found in Replace are
:::                treated as $ literals.
:::
:::            E - Search and Replace represent the name of environment
:::                variables that contain the respective values. An undefined
:::                variable is treated as an empty string.
:::
:::            M - Multi-line mode. The entire contents of stdin is read and
:::                processed in one pass instead of line by line. ^ anchors
:::                the beginning of a line and $ anchors the end of a line.
:::
:::            X - Enables extended substitution pattern syntax with support
:::                for the following escape sequences:
:::
:::                \\     -  Backslash
:::                \b     -  Backspace
:::                \f     -  Formfeed
:::                \n     -  Newline
:::                \r     -  Carriage Return
:::                \t     -  Horizontal Tab
:::                \v     -  Vertical Tab
:::                \xnn   -  Ascii (Latin 1) character expressed as 2 hex digits
:::                \unnnn -  Unicode character expressed as 4 hex digits
:::
:::                Escape sequences are supported even when the L option is used.
:::
:::            S - The source is read from an environment variable instead of
:::                from stdin. The name of the source environment variable is
:::                specified in the next argument after the option string.
:::

::************ Batch portion ***********
@echo off
if .%2 equ . (
  if "%~1" equ "/?" (
    findstr "^:::" "%~f0" | cscript //E:JScript //nologo "%~f0" "^:::" ""
    exit /b 0
  ) else (
    call :err "Insufficient arguments"
    exit /b 1
  )
)
echo(%~3|findstr /i "[^SMILEX]" >nul && (
  call :err "Invalid option(s)"
  exit /b 1
)
cscript //E:JScript //nologo "%~f0" %*
exit /b 0

:err
>&2 echo ERROR: %~1. Use REPL /? to get help.
exit /b

************* JScript portion **********/
var env=WScript.CreateObject("WScript.Shell").Environment("Process");
var args=WScript.Arguments;
var search=args.Item(0);
var replace=args.Item(1);
var options="g";
if (args.length>2) {
  options+=args.Item(2).toLowerCase();
}
var multi=(options.indexOf("m")>=0);
var srcVar=(options.indexOf("s")>=0);
if (srcVar) {
  options=options.replace(/s/g,"");
}
if (options.indexOf("e")>=0) {
  options=options.replace(/e/g,"");
  search=env(search);
  replace=env(replace);
}
if (options.indexOf("l")>=0) {
  options=options.replace(/l/g,"");
  search=search.replace(/([.^$*+?()[{\\|])/g,"\\$1");
  replace=replace.replace(/\$/g,"$$$$");
}
if (options.indexOf("x")>=0) {
  options=options.replace(/x/g,"");
  replace=replace.replace(/\\\\/g,"\\B");
  replace=replace.replace(/\\b/g,"\b");
  replace=replace.replace(/\\f/g,"\f");
  replace=replace.replace(/\\n/g,"\n");
  replace=replace.replace(/\\r/g,"\r");
  replace=replace.replace(/\\t/g,"\t");
  replace=replace.replace(/\\v/g,"\v");
  replace=replace.replace(/\\x[0-9a-fA-F]{2}|\\u[0-9a-fA-F]{4}/g,
    function($0,$1,$2){
      return String.fromCharCode(parseInt("0x"+$0.substring(2)));
    }
  );
  replace=replace.replace(/\\B/g,"\\");
}
var search=new RegExp(search,options);

if (srcVar) {
  WScript.Stdout.Write(env(args.Item(3)).replace(search,replace));
} else {
  while (!WScript.StdIn.AtEndOfStream) {
    if (multi) {
      WScript.Stdout.Write(WScript.StdIn.ReadAll().replace(search,replace));
    } else {
      WScript.Stdout.WriteLine(WScript.StdIn.ReadLine().replace(search,replace));
    }
  }
}
于 2012-10-27T12:55:36.703 に答える
0

これは面倒ですが、交換するキーの数が限られている場合は、次の方法で十分かもしれません。

@echo off

set infile=foo.ini
set outfile=newfile.ini

rem create an empty output file
echo. > %outfile%

rem iterate over all properties
for /f " usebackq eol=# tokens=1,2 delims== " %%i in ("%infile%") do (
  call :replace %%i %%j
)

rem terminate batch file
goto :eof

rem sub-program to do the replacing
:replace

  if "%1"=="Username" (
    echo Username=Timmy>>%outfile%
    goto :eof
  )

  if "%1"=="Servername" (
    echo Servername=HAL2001>>%outfile%
    goto :eof
  )
  echo %1=%2>>%outfile%

  rem terminate sub-program
  goto :eof
于 2012-10-26T18:01:01.497 に答える