1
0
Fork 0
mirror of https://github.com/Lethrys/Cave-Story-Lethrys-Upscale synced 2024-11-28 07:02:51 +00:00
Cave-Story-Lethrys-Upscale/png/convert_bmp_to_png.sh

9 lines
172 B
Bash
Raw Normal View History

2022-05-02 14:26:31 +00:00
#!/bin/bash
# converts bmp to png in data/
for i in $(find data/ -type f -print | grep -i .bmp)
do
echo $i
mogrify -format png -transparent Black $i
rm $i
done