erigon-pulse/cmd/downloader/recompress.sh
Alex Sharov b6334870e8
Snapshots: recompress.sh (#3845)
* save

* save
2022-04-07 13:26:14 +07:00

19 lines
469 B
Bash
Executable File

dir=$1
files=$(ls $dir/snapshots | grep tr | grep -v tor | grep seg | sort -n -t$'-' -k1)
for file in $files
do
# mv $dir/snapshots/$file $dir/snapshots/$file.old
from=$dir/snapshots/$file
to=$dir/snapshots/$file.new
echo "file: $file"
./build/bin/erigon snapshots uncompress $from | ./build/bin/erigon snapshots compress $to --datadir=$dir
a=$(du -h $from | awk '{print $1;}')
b=$(du -h $to | awk '{print $1;}')
echo "size: $a -> $b"
done