git: 9front

Download patch

ref: 3a2b2862d506539debb8f0fb40d5522880a50871
parent: 189b6dd7665a4b1fa35ff3052fb6c162e1c1c6f2
author: qwx <qwx@sciops.net>
date: Sun Oct 15 20:33:27 EDT 2023

file: recognize MOD files (thanks umbraticus)

--- a/sys/src/cmd/file.c
+++ b/sys/src/cmd/file.c
@@ -964,6 +964,7 @@
 } offstrs[] = {
 	32*1024, "\001CD001\001",	"ISO9660 CD image",	7,	"application/x-iso9660-image",
 	32*4, "DICM",	"DICOM medical imaging data",	4,	"application/dicom",
+	1080, "M.K.",	"Amiga module",	4,	"audio/mod",
 	0, 0, 0, 0, 0
 };
 
--