mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
6 lines
109 B
Bash
Executable file
6 lines
109 B
Bash
Executable file
#! /usr/bin/env bash
|
|
#
|
|
# Replace fractions of double value (i.e., 3.14 -> 3.x).
|
|
|
|
sed 's/\.[0-9]\{1,\}/.X/g'
|
|
|