6 lines
131 B
Bash
Executable File
6 lines
131 B
Bash
Executable File
#! /usr/bin/env bash
|
|
#
|
|
# Replace timestamps of the form "2013-03-27" with Xs
|
|
|
|
sed 's/[0-9]\{4\}-[0-9]\{2\}-[0-9]\{2\}/XXXX-XX-XX/'
|