摘要: awk '{ if ($10 ~ /^[0-9]+$/) { url = $7; bytes = $10; total[url] += bytes; }}END { for (u in total) { printf "%.2f MB -> %s\n", total[u]/1024/1024, u; 阅读全文
posted @ 2025-12-18 16:35 仁义礼智信的 阅读(3) 评论(0) 推荐(0)