9 lines
256 B
Bash
Executable File
9 lines
256 B
Bash
Executable File
#! /usr/bin/env bash
|
|
#
|
|
# Remove unstable pieces in Zeek logs.
|
|
|
|
sed -E 's/^ *#(open|close).(19|20)..-..-..-..-..-..$/#\1 XXXX-XX-XX-XX-XX-XX/g' |
|
|
$(dirname $0)/diff-sort |
|
|
$(dirname $0)/diff-remove-timestamps |
|
|
$(dirname $0)/diff-remove-abspath
|