Skip to content

Instantly share code, notes, and snippets.

@textarcana
Created June 22, 2010 01:59
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 textarcana/4d9f4bd6c8c7f6e85350 to your computer and use it in GitHub Desktop.
Save textarcana/4d9f4bd6c8c7f6e85350 to your computer and use it in GitHub Desktop.
Bash analysis tools for WGet output
find . -iname *\.htm | wc -l
find . -iname *\.html | wc -l
find . -iname *\.php | wc -l
find . -iname *\.jpg | wc -l
find . -iname *\.gif | wc -l
find . -iname *\.png | wc -l
find . -iname *\.html@* | wc -l
find . -iname *\.php@* | wc -l
find . -iname *\.htm@* | wc -l
find . -iname *@* | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment