tiff2png.sh 101 B

12345
  1. #!/bin/bash
  2. for file in $(basename -s .tiff $(ls *.tiff))
  3. do convert "$file".tiff "$file".png
  4. done