mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
18 lines
459 B
Bash
Executable file
18 lines
459 B
Bash
Executable file
#! /usr/bin/env bash
|
|
#
|
|
# Default canonifier used with the trace-based tests in testing/external/*.
|
|
|
|
addl="cat"
|
|
|
|
if [ "$1" == "capture_loss.log" ]; then
|
|
addl="`dirname $0`/diff-remove-fractions"
|
|
fi
|
|
|
|
`dirname $0`/diff-remove-timestamps \
|
|
| `dirname $0`/diff-remove-uids \
|
|
| `dirname $0`/diff-remove-file-ids \
|
|
| `dirname $0`/diff-remove-x509-names \
|
|
| `dirname $0`/diff-canon-notice-policy \
|
|
| `dirname $0`/diff-sort \
|
|
| eval $addl
|
|
|