#!/bin/sh

SIZE=80

cat $1 | grep "^[[:digit:]]" | while read l; do
    sku=`echo $l | cut -d ',' -f 1`
    desc=`echo $l | cut -d '"' -f 2`

    link="http://dx.com/${sku}"
    img="http://img.dxcdn.com/productimages/sku_${sku}_1_small.jpg"

    echo "<a href='${link}'><img src='${img}' width='${SIZE}' height='${SIZE}' alt='${desc}' title='${desc}'></a>"
done
