mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
11 lines
245 B
Bash
Executable File
11 lines
245 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
regex='bindataFileInfo.*name: \"(.+)\".*time.Unix.(.+),'
|
|
while read line; do
|
|
if [[ $line =~ $regex ]]; then
|
|
file=${BASH_REMATCH[1]}
|
|
ts=${BASH_REMATCH[2]}
|
|
touch --date @$ts $file
|
|
fi
|
|
done
|