我有两个文件:
$cat myMagic 20 string TEST ThisIsTestType
$cat testFile TEST i am test file from inside
两个文件都在同一个目录中。我运行:
$file testFile testFile: ASCII text
为什么我得到了ASCII text
而又得不到testFile: ThisIsTestType
?
提前谢谢了!
答案1
file
默认使用其预编译的魔法数据库 - 您需要通过选项告诉它使用您的自定义文件-m
。
前任。
$ file testFile
testFile: ASCII text
但
$ file -m myMagic testFile
testFile: ThisIsTestType
$