mirror of
https://github.com/openeggbert/speedy-blupi-games.git
synced 2025-03-14 20:43:28 +01:00
9 lines
217 B
Markdown
9 lines
217 B
Markdown
# Open Eggbert Data
|
|
|
|
select count(*),lower(name), HASH_SUM_VALUE from file group by HASH_SUM_VALUE, lower(name)
|
|
|
|
## How to convert BMP to PNG on Linux
|
|
|
|
for file in *.bmp; do convert "$file" "${file%.bmp}".png; done
|
|
|