12 lines
220 B
Bash
Executable File
12 lines
220 B
Bash
Executable File
#! /usr/bin/env bash
|
|
#
|
|
# Replace columns from zeekctl cron's stats.log
|
|
# that are not predictable with Xs.
|
|
|
|
awk '{
|
|
if ( $1 ~ /^[0-9]+\.[0-9]+$/ ) { $1 = "XXXXXXXXXX.XX" }
|
|
if ( NF > 4 ) { $5 = "X" }
|
|
|
|
print
|
|
}'
|