mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
8 lines
336 B
Bash
Executable file
8 lines
336 B
Bash
Executable file
#! /usr/bin/env bash
|
|
#
|
|
# Replace the time zone with "+0000". This is needed for any zeek-cut tests
|
|
# that convert UTC timestamps and show the time zone, because strftime
|
|
# with the "%z" format string behaves differently on OS X (it just always
|
|
# shows the local time zone instead of "+0000").
|
|
|
|
sed 's/[+-][0-9][0-9][0-9][0-9]/+0000/g'
|