mirror of
https://github.com/Lethrys/Cave-Story-Lethrys-Upscale
synced 2024-11-24 13:32:49 +00:00
9 lines
172 B
Bash
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
|