ファイル内の 2 つの異なる文字列を検索するバッチ ファイルを作成しようとしています。次に、1 回目の検索の 1 行目と 2 回目の検索の 1 行目を 1 行にします。
これはバッチでの私のスキルをはるかに超えていることに気付いたので、少し助けていただければ幸いです。
前もって感謝します!
@echo off
for /f %%G in (file.txt) do (
findstr "word1" *.* > result.txt
findstr "word2" *.* >> result.txt)
例:
ファイル.txt:
hello i'm a line with word1
hello i'm a line with word2
hello i'm another line with word1
hello i'm another line with word2
hello i'm yet another line with word1
hello i'm yet another line with word2
結果.txt:
hello i'm a line with word1hello i'm a line with word2
hello i'm another line with word1hello i'm another line with word2
hello i'm yet another line with word1hello i'm yet another line with word2