Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のコードは、文字列「Type: Error」を含むログを出力します。
grep -E "$Currentdate" *.log | grep "Type: Error" | sort -u
文字列「Type: Error」を含む行を除く、ログ内のすべての行の出力を取得する場合のコードは何ですか?
前もって感謝します
-vトリックを行うオプション grep を使用します。
-v
cat logFile | grep -v "Type: Error"
これにより、最初にファイルをビデオに表示し、次に-v一致を反転するオプションを使用して、トリックは完了です!
複数の文字列の場合、次のようなことができます
cat logFile | egrep -v '(firstString)|(secondString)|(thirdString)|...|(nString)'