1

ログファイルを分析しようとしています。次の要件を満たす正規表現を探しています。

LOG: https://localhost/a
LOG: https://remotehost/x
LOG: https://localhost/b
LOG: https://localhost/c
LOG: https://remotehost/a

上記はログファイルの例です。質問: 以下を含まない行のみを取得するように、ログ ファイルを grep する方法はありますか?

https://localhost

結果は次のようになります。

LOG: https://remotehost/x
LOG: https://remotehost/a
4

1 に答える 1

5

使用するgrep -v <word> <filename>

grepマニュアルから(FreeBSD):

-v, --invert-match
    Invert the sense of matching, to select non-matching lines.
于 2013-02-11T13:01:56.977 に答える