You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/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
|