1
0
mirror of https://github.com/openeggbert/speedy-blupi-games.git synced 2025-03-14 20:43:28 +01:00

Updated README.md

This commit is contained in:
Robert Vokac 2024-07-06 18:09:03 +02:00
parent 6ffdedca46
commit e3517f8ce4
No known key found for this signature in database
GPG Key ID: C459E1E4B4A986BB

View File

@ -2,3 +2,7 @@
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