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

old=bmp
new=glcd

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