Search found 1 match
- 2014-07-04T14:14:54-07:00
- Forum: Users
- Topic: Using convert or mogrify - recursive sub-directories
- Replies: 2
- Views: 26613
Using convert or mogrify - recursive sub-directories
I have a stash of *.tif files that need to be converted to *.pdf's, but they're unfortunately in a complex tree of directories and subdirectories (some as deep as 5-6). I've tried using find in conjunction with mogrify but without luck: find ./ -name "*.tif" -exec mogrify -format pdf *.tif {} \; I ...