Saturday, February 10, 2007

OsDir Grab Screenshots Script

# Script to grab images from www.osdir.com version 2
# $1 is the folder name
# $2 is the number of images

for ((i=1; i<=$2;i++))
do
wget http://shots.osdir.com/slideshows/$1/$i.gif
done

--First posted July 7, 2006
Bash Script to grab the screenshot from OSDir of Edubuntu 6.06

for ((i=1; i<=63;i++)); do wget http://shots.osdir.com/slideshows/661_or/$i.png ;
done

You can modify which distributions by taking note of the link and modifying your script. You need also to take note of the last page.

No comments: