1
0
Fork 0
mirror of https://github.com/Lethrys/Cave-Story-Lethrys-Upscale synced 2024-11-24 13:32:49 +00:00
Cave-Story-Lethrys-Upscale/png/convert_bmp_to_png.sh
2022-05-02 10:26:31 -04:00

9 lines
172 B
Bash

#!/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