freebsd-src/contrib/file/python/example.py
Xin LI 8defb9997c MFC r267897: MFV r267843:
Update file/libmagic to 5.19.
2014-07-11 00:00:00 +00:00

18 lines
207 B
Python

#! /usr/bin/python
import magic
ms = magic.open(magic.NONE)
ms.load()
tp = ms.file("/bin/ls")
print (tp)
f = open("/bin/ls", "rb")
buf = f.read(4096)
f.close()
tp = ms.buffer(buf)
print (tp)
ms.close()