mirror of
https://github.com/simon987/sist2.git
synced 2025-04-04 07:52:59 +00:00
6 lines
170 B
Python
6 lines
170 B
Python
|
|
with open("/usr/lib/file/magic.mgc", "rb") as f:
|
|
data = f.read()
|
|
|
|
print("char magic_database_buffer[%d] = {%s};" % (len(data), ",".join(str(int(b)) for b in data)))
|