Skip to content

Instantly share code, notes, and snippets.

@connormckelvey
Created September 24, 2014 15:10
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/210e384cabccbefc114e to your computer and use it in GitHub Desktop.
Save connormckelvey/210e384cabccbefc114e to your computer and use it in GitHub Desktop.
#!/bin/bash
PAGES=(
"http://www.example.com"
"http://www.example.com/home"
"http://www.example.com/about"
)
for ((i = 0; i < ${#PAGES[@]}; i++))
do
webkit2png ${PAGES[$i]} --fullsize
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment