Skip to content

Instantly share code, notes, and snippets.

@unfo
Created August 4, 2013 17:00
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 unfo/6151009 to your computer and use it in GitHub Desktop.
Save unfo/6151009 to your computer and use it in GitHub Desktop.
#!/bin/bash
for u in `cat uris`; do curl -s $u | grep length | tr '><' ' ' >> l.txt; done; awk '{s+=$2}END{print (s/60) " min"}' l.txt;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment