Please enable JavaScript in your browser!
Home
Explore
Help
Sign In
ralessi
/
courses
Watch
2
Star
0
Fork
0
Files
Pull Requests
0
Wiki
Branch:
master
Branches
Tags
master
courses
/
fichiers
/
scripts
/
tiff2png.sh
tiff2png.sh
101 B
Permalink
History
Raw
1
2
3
4
5
#!/bin/bash
for file in $(basename -s .tiff $(ls *.tiff))
do convert "$file".tiff "$file".png
done