두 개의 파일이 있습니다.
$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
$