#!/bin/bash ## Convert TIFF images into PNG images and create an aggregated PDF ## Written August 20, 2010 ## Taha Ahmed mogrify -format png *.tif # ${PWD##*/} extracts the name of the parent directory from the current path convert *.tif ${PWD##*/}.pdf exit 1