wip
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at b4e8f552f35c82c01f929a09d8ef9abf057ac9ff 7 lines 289 B view raw
1#!/bin/sh 2total_uncompressed_size=0 3for file in plc_cache/*.zst; do 4 uncompressed_size=$(zstd -l "$file" | awk '/Decompressed Size/ {print $3}') 5 total_uncompressed_size=$((total_uncompressed_size + uncompressed_size)) 6done 7echo "Total uncompressed size: $total_uncompressed_size Bytes"