1
0
mirror of https://github.com/openeggbert/speedy-blupi-games.git synced 2025-03-24 16:19:53 +01:00
speedy-blupi-games/README.md

9 lines
217 B
Markdown
Raw Normal View History

2024-07-06 18:05:08 +02:00
# Open Eggbert Data
select count(*),lower(name), HASH_SUM_VALUE from file group by HASH_SUM_VALUE, lower(name)
2024-07-06 18:09:03 +02:00
## How to convert BMP to PNG on Linux
for file in *.bmp; do convert "$file" "${file%.bmp}".png; done