summaryrefslogtreecommitdiff
path: root/tools/convpic/c_tif2glcd
blob: d3983b85b6de6eb48337e8321309608c28f2359b (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
# Converts all TIFF images to *.glcd

old=tif
new=glcd

for file in ./*."$old"; do
  convpic -i "$file" -o "`basename \"$file\" \"$old\"`$new"
done