テンプレートファイル(myTemplate.txtなど)があり、このテンプレートから自分のファイル(myFile.txtなど)を作成するためにいくつか編集する必要があります。ファイル内のテキストを検索/置換するバッチコマンド
だからテンプレートは、私は次のようにこれを交換することにしたい
今env.name=
env.prop=
product.images.dir=/opt/web-content/product-images
のような行が含まれています。
env.name=abc
env.prop=xyz
product.images.dir=D:/opt/web-content/product-images
ですから、以下を行うためのバッチコマンドを探しています。
1. Open the template file.
2. Do a kind of find/replace for the string/text
3. Save the updates as a new file
どうすればよいですか?遅延拡張が有効になっている間
env.name=!env.name!
env.prop=!env.prop!
product.images.dir=/opt/web-content/product-images
そして、ファイルの読み込みと書き込みにFORループを使用します: