wip
1
fork

Configure Feed

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

at e09bed8beae2f15d001fa66d03a68ad44d2448d4 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"