Sokolniki WebShot

bash
#!/bin/sh
for (( port=5010; port<=5253; port++ ))
do
    # send URL to the firefox session
    CutyCapt --url=http://cam.sokolniki.com:$port/jpg/image.jpg --max-wait=15000 --out=images/image-$port.png
    echo $port Done
done