Never been to TextSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

About this user

Jason Hoffman http://textdrive.com/

« Newer Snippets
Older Snippets »
1 total  XML / RSS feed 

Web bandwidth determination with awk

cat access_log | awk '{sum += $10} END {print int(sum/1024/1024),"MB"}'

zcat access_log.something.gz | awk '{sum += $10} END {print int(sum/1024/1024),"MB"}'
« Newer Snippets
Older Snippets »
1 total  XML / RSS feed