Skip to content

Instantly share code, notes, and snippets.

@piscisaureus
Created March 22, 2013 22:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save piscisaureus/5225260 to your computer and use it in GitHub Desktop.
Save piscisaureus/5225260 to your computer and use it in GitHub Desktop.
echo Windows binary / installer downloads
grep "node-v0.10.0-x86.msi" nodejs.access_log | wc -l
grep "node-v0.10.0-x64.msi" nodejs.access_log | wc -l
grep "0.10.0/node.exe" nodejs.access_log | wc -l
grep "0.10.0/x64/node.exe" nodejs.access_log | wc -l
echo OS X binary / installer downloads
grep "node-v0.10.0.pkg" nodejs.access_log | wc -l
grep "node-v0.10.0-darwin-x64.tar.gz" nodejs.access_log | wc -l
grep "node-v0.10.0-darwin-x86.tar.gz" nodejs.access_log | wc -l
echo Source downloads
grep "node-v0.10.0.tar.gz" nodejs.access_log | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment