Skip to content

Instantly share code, notes, and snippets.

@connormckelvey
Created August 6, 2014 16:12
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 connormckelvey/97d56bed872ecaa6ea00 to your computer and use it in GitHub Desktop.
Save connormckelvey/97d56bed872ecaa6ea00 to your computer and use it in GitHub Desktop.
Take Screenshots of Website
#!/bin/bash
PAGES=("http://www.example.com/"
"http://www.example.com/about.aspx"
"http://www.example.com/blog/"
"http://www.example.com/blog/?page=1")
for ((i = 0; i < ${#PAGES[@]}; i++))
do
webkit2png ${PAGES[$i]} --fullsize
done
@connormckelvey
Copy link
Author

then run sh gistfile1.sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment