#!/bin/sh # Nur das aktuelle Verzeichnis ohne den ganzen Pfad als Ueberschrift ueschrift=`pwd | awk -F '/' '{print $NF}'` # Falls beabsichtigt wird alle indexfiles in ein Verzeichnis zu packen ist ein eigener Name besser. outfile="${ueschrift}_index.jpg" # Falls eine Website erstellt werden soll, bitte das naechste Kommentarzeichen loeschen und das vorige # auskommentieren. # outfile="${ueschrift}_index.html" montage -title ${ueschrift} -size 256x256 *.{jpg,png} \ -auto-orient -thumbnail 256x256 \ -set caption '%t' -bordercolor AliceBlue -background grey20 \ +polaroid \ +set label -background white -geometry +1+1 -tile 4x \ ${outfile}