魔术文件没有产生想要的结果

魔术文件没有产生想要的结果

我有两个文件:

  1. $cat myMagic 20 string TEST ThisIsTestType
  2. $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
$

相关内容