Return to Snippet

Revision: 65381
at November 26, 2013 00:37 by diogoo


Initial Code
for i in {1..23}; do; curl "http://lorempixel.com/index.php?generator=1&x=640&y=480&cat=" -o temp.html && cat temp.html | sed -n 's/.*<img src="\([^" ]*\)".*/\1/p' | awk '{print "http://lorempixel.com/"$1}' | xargs curl -o $i.jpg; done;

Initial URL


Initial Description
Downloads a set of n images from [Lorem Pixel](http://lorempixe.com/).

Initial Title
Download n random images from lorempixel

Initial Tags


Initial Language
Bash