grep を使用して、2 つの異なるファイル内のファイルから一致する行を見つけました。とから一致するファイルをうまく見つけますFile1
が、複数のファイルがある瞬間から、それが見つかったファイル名を行の横に出力します。File2
File3
grep -w -f File1 File2 File3
出力:
File2: pattern
File2: pattern
File3: pattern
と の出力を避けるオプションはありますFile2:
かFile3:
?
grep --no-filename -w -f File1 File2 File3
UNIX システムを使用している場合は、man ページを参照してください。問題が発生した場合、最初のステップはman $programName
. この場合、man grep
. 「-h」オプションが必要なようです。マニュアルページからの抜粋は次のとおりです。
-h, --no-filename
Suppress the prefixing of file names on output. This is the default when there is only one file (or only standard input) to search.