#!/bin/sh # Process images in the directory. Creates: # - A directory large/, with all the images in full. # - A directory small/, with all the images 600x400. # - An output file, images.html, with the figcaptions for each of them. # The href of the large will be $1/large/image.jpg. # # TODO # - Make it so it doesn't add entries for large/ and small/ dirs. URL_PREFIX="$1" mkdir -p small mkdir -p large for file in * do echo "Currently on: ", $file cp "$file" "large/$file" convert -resize 600X400 "$file" "small/$file" echo "
\n\t\n
TODO
\n
\n\n" >> images.html done