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.
10 lines
185 B
Bash
10 lines
185 B
Bash
13 years ago
|
#!/bin/bash
|
||
|
## Convert TIFF images into PNG images and create an aggregated PDF
|
||
|
## Written August 20, 2010
|
||
|
## Taha Ahmed
|
||
|
|
||
|
mogrify -format png *.tif
|
||
|
convert *.tif ${PWD##*/}.pdf
|
||
|
|
||
|
exit 1
|