file.man 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549
  1. .\" $File: file.man,v 1.79 2008/11/06 22:49:08 rrt Exp $
  2. .Dd October 9, 2008
  3. .Dt FILE __CSECTION__
  4. .Os
  5. .Sh NAME
  6. .Nm file
  7. .Nd determine file type
  8. .Sh SYNOPSIS
  9. .Nm
  10. .Op Fl bchikLnNprsvz
  11. .Op Fl -mime-type
  12. .Op Fl -mime-encoding
  13. .Op Fl f Ar namefile
  14. .Op Fl F Ar separator
  15. .Op Fl m Ar magicfiles
  16. .Ar file
  17. .Nm
  18. .Fl C
  19. .Op Fl m Ar magicfile
  20. .Nm
  21. .Op Fl -help
  22. .Sh DESCRIPTION
  23. This manual page documents version __VERSION__ of the
  24. .Nm
  25. command.
  26. .Pp
  27. .Nm
  28. tests each argument in an attempt to classify it.
  29. There are three sets of tests, performed in this order:
  30. filesystem tests, magic tests, and language tests.
  31. The
  32. .Em first
  33. test that succeeds causes the file type to be printed.
  34. .Pp
  35. The type printed will usually contain one of the words
  36. .Em text
  37. (the file contains only
  38. printing characters and a few common control
  39. characters and is probably safe to read on an
  40. .Dv ASCII
  41. terminal),
  42. .Em executable
  43. (the file contains the result of compiling a program
  44. in a form understandable to some
  45. .Dv UNIX
  46. kernel or another),
  47. or
  48. .Em data
  49. meaning anything else (data is usually
  50. .Sq binary
  51. or non-printable).
  52. Exceptions are well-known file formats (core files, tar archives)
  53. that are known to contain binary data.
  54. When modifying magic files or the program itself, make sure to
  55. .Em "preserve these keywords" .
  56. Users depend on knowing that all the readable files in a directory
  57. have the word
  58. .Sq text
  59. printed.
  60. Don't do as Berkeley did and change
  61. .Sq shell commands text
  62. to
  63. .Sq shell script .
  64. .Pp
  65. The filesystem tests are based on examining the return from a
  66. .Xr stat 2
  67. system call.
  68. The program checks to see if the file is empty,
  69. or if it's some sort of special file.
  70. Any known file types appropriate to the system you are running on
  71. (sockets, symbolic links, or named pipes (FIFOs) on those systems that
  72. implement them)
  73. are intuited if they are defined in
  74. the system header file
  75. .In sys/stat.h .
  76. .Pp
  77. The magic tests are used to check for files with data in
  78. particular fixed formats.
  79. The canonical example of this is a binary executable (compiled program)
  80. .Dv a.out
  81. file, whose format is defined in
  82. .In elf.h ,
  83. .In a.out.h
  84. and possibly
  85. .In exec.h
  86. in the standard include directory.
  87. These files have a
  88. .Sq "magic number"
  89. stored in a particular place
  90. near the beginning of the file that tells the
  91. .Dv UNIX operating system
  92. that the file is a binary executable, and which of several types thereof.
  93. The concept of a
  94. .Sq "magic"
  95. has been applied by extension to data files.
  96. Any file with some invariant identifier at a small fixed
  97. offset into the file can usually be described in this way.
  98. The information identifying these files is read from the compiled
  99. magic file
  100. .Pa __MAGIC__.mgc ,
  101. or the files in the directory
  102. .Pa __MAGIC__
  103. if the compiled file does not exist. In addition, if
  104. .Pa $HOME/.magic.mgc
  105. or
  106. .Pa $HOME/.magic
  107. exists, it will be used in preference to the system magic files.
  108. .Pp
  109. If a file does not match any of the entries in the magic file,
  110. it is examined to see if it seems to be a text file.
  111. ASCII, ISO-8859-x, non-ISO 8-bit extended-ASCII character sets
  112. (such as those used on Macintosh and IBM PC systems),
  113. UTF-8-encoded Unicode, UTF-16-encoded Unicode, and EBCDIC
  114. character sets can be distinguished by the different
  115. ranges and sequences of bytes that constitute printable text
  116. in each set.
  117. If a file passes any of these tests, its character set is reported.
  118. ASCII, ISO-8859-x, UTF-8, and extended-ASCII files are identified
  119. as
  120. .Sq text
  121. because they will be mostly readable on nearly any terminal;
  122. UTF-16 and EBCDIC are only
  123. .Sq character data
  124. because, while
  125. they contain text, it is text that will require translation
  126. before it can be read.
  127. In addition,
  128. .Nm
  129. will attempt to determine other characteristics of text-type files.
  130. If the lines of a file are terminated by CR, CRLF, or NEL, instead
  131. of the Unix-standard LF, this will be reported.
  132. Files that contain embedded escape sequences or overstriking
  133. will also be identified.
  134. .Pp
  135. Once
  136. .Nm
  137. has determined the character set used in a text-type file,
  138. it will
  139. attempt to determine in what language the file is written.
  140. The language tests look for particular strings (cf.
  141. .In names.h
  142. ) that can appear anywhere in the first few blocks of a file.
  143. For example, the keyword
  144. .Em .br
  145. indicates that the file is most likely a
  146. .Xr troff 1
  147. input file, just as the keyword
  148. .Em struct
  149. indicates a C program.
  150. These tests are less reliable than the previous
  151. two groups, so they are performed last.
  152. The language test routines also test for some miscellany
  153. (such as
  154. .Xr tar 1
  155. archives).
  156. .Pp
  157. Any file that cannot be identified as having been written
  158. in any of the character sets listed above is simply said to be
  159. .Sq data .
  160. .Sh OPTIONS
  161. .Bl -tag -width indent
  162. .It Fl b , -brief
  163. Do not prepend filenames to output lines (brief mode).
  164. .It Fl c , -checking-printout
  165. Cause a checking printout of the parsed form of the magic file.
  166. This is usually used in conjunction with the
  167. .Fl m
  168. flag to debug a new magic file before installing it.
  169. .It Fl C , -compile
  170. Write a
  171. .Pa magic.mgc
  172. output file that contains a pre-parsed version of the magic file or directory.
  173. .It Fl e , -exclude Ar testname
  174. Exclude the test named in
  175. .Ar testname
  176. from the list of tests made to determine the file type. Valid test names
  177. are:
  178. .Bl -tag -width
  179. .It apptype
  180. .Dv EMX
  181. application type (only on EMX).
  182. .It text
  183. Various types of text files (this test will try to guess the text encoding, irrespective of the setting of the
  184. .Sq encoding
  185. option).
  186. .It encoding
  187. Different text encodings for soft magic tests.
  188. .It tokens
  189. Looks for known tokens inside text files.
  190. .It cdf
  191. Prints details of Compound Document Files.
  192. .It compress
  193. Checks for, and looks inside, compressed files.
  194. .It elf
  195. Prints ELF file details.
  196. .It soft
  197. Consults magic files.
  198. .It tar
  199. Examines tar files.
  200. .El
  201. .It Fl f , -files-from Ar namefile
  202. Read the names of the files to be examined from
  203. .Ar namefile
  204. (one per line)
  205. before the argument list.
  206. Either
  207. .Ar namefile
  208. or at least one filename argument must be present;
  209. to test the standard input, use
  210. .Sq -
  211. as a filename argument.
  212. .It Fl F , -separator Ar separator
  213. Use the specified string as the separator between the filename and the
  214. file result returned. Defaults to
  215. .Sq \&: .
  216. .It Fl h , -no-dereference
  217. option causes symlinks not to be followed
  218. (on systems that support symbolic links). This is the default if the
  219. environment variable
  220. .Dv POSIXLY_CORRECT
  221. is not defined.
  222. .It Fl i , -mime
  223. Causes the file command to output mime type strings rather than the more
  224. traditional human readable ones. Thus it may say
  225. .Sq text/plain; charset=us-ascii
  226. rather than
  227. .Sq ASCII text .
  228. In order for this option to work, file changes the way
  229. it handles files recognized by the command itself (such as many of the
  230. text file types, directories etc), and makes use of an alternative
  231. .Sq magic
  232. file.
  233. (See the FILES section, below).
  234. .It Fl -mime-type , -mime-encoding
  235. Like
  236. .Fl i ,
  237. but print only the specified element(s).
  238. .It Fl k , -keep-going
  239. Don't stop at the first match, keep going. Subsequent matches will be
  240. have the string
  241. .Sq "\[rs]012\- "
  242. prepended.
  243. (If you want a newline, see the
  244. .Sq "\-r"
  245. option.)
  246. .It Fl L , -dereference
  247. option causes symlinks to be followed, as the like-named option in
  248. .Xr ls 1
  249. (on systems that support symbolic links).
  250. This is the default if the environment variable
  251. .Dv POSIXLY_CORRECT
  252. is defined.
  253. .It Fl m , -magic-file Ar list
  254. Specify an alternate list of files and directories containing magic.
  255. This can be a single item, or a colon-separated list.
  256. If a compiled magic file is found alongside a file or directory, it will be used instead.
  257. .It Fl n , -no-buffer
  258. Force stdout to be flushed after checking each file.
  259. This is only useful if checking a list of files.
  260. It is intended to be used by programs that want filetype output from a pipe.
  261. .It Fl N , -no-pad
  262. Don't pad filenames so that they align in the output.
  263. .It Fl p , -preserve-date
  264. On systems that support
  265. .Xr utime 2
  266. or
  267. .Xr utimes 2 ,
  268. attempt to preserve the access time of files analyzed, to pretend that
  269. .Nm
  270. never read them.
  271. .It Fl r , -raw
  272. Don't translate unprintable characters to \eooo.
  273. Normally
  274. .Nm
  275. translates unprintable characters to their octal representation.
  276. .It Fl s , -special-files
  277. Normally,
  278. .Nm
  279. only attempts to read and determine the type of argument files which
  280. .Xr stat 2
  281. reports are ordinary files.
  282. This prevents problems, because reading special files may have peculiar
  283. consequences.
  284. Specifying the
  285. .Fl s
  286. option causes
  287. .Nm
  288. to also read argument files which are block or character special files.
  289. This is useful for determining the filesystem types of the data in raw
  290. disk partitions, which are block special files.
  291. This option also causes
  292. .Nm
  293. to disregard the file size as reported by
  294. .Xr stat 2
  295. since on some systems it reports a zero size for raw disk partitions.
  296. .It Fl v , -version
  297. Print the version of the program and exit.
  298. .It Fl z , -uncompress
  299. Try to look inside compressed files.
  300. .It Fl 0 , -print0
  301. Output a null character
  302. .Sq \e0
  303. after the end of the filename. Nice to
  304. .Xr cut 1
  305. the output. This does not affect the separator which is still printed.
  306. .It Fl -help
  307. Print a help message and exit.
  308. .El
  309. .Sh FILES
  310. .Bl -tag -width __MAGIC__.mgc -compact
  311. .It Pa __MAGIC__.mgc
  312. Default compiled list of magic.
  313. .It Pa __MAGIC__
  314. Directory containing default magic files.
  315. .El
  316. .Sh ENVIRONMENT
  317. The environment variable
  318. .Dv MAGIC
  319. can be used to set the default magic file name.
  320. If that variable is set, then
  321. .Nm
  322. will not attempt to open
  323. .Pa $HOME/.magic .
  324. .Nm
  325. adds
  326. .Sq .mgc
  327. to the value of this variable as appropriate.
  328. The environment variable
  329. .Dv POSIXLY_CORRECT
  330. controls (on systems that support symbolic links), whether
  331. .Nm
  332. will attempt to follow symlinks or not. If set, then
  333. .Nm
  334. follows symlink, otherwise it does not. This is also controlled
  335. by the
  336. .Fl L
  337. and
  338. .Fl h
  339. options.
  340. .Sh SEE ALSO
  341. .Xr magic __FSECTION__ ,
  342. .Xr strings 1 ,
  343. .Xr od 1 ,
  344. .Xr hexdump 1,
  345. .Xr file 1posix
  346. .Sh STANDARDS CONFORMANCE
  347. This program is believed to exceed the System V Interface Definition
  348. of FILE(CMD), as near as one can determine from the vague language
  349. contained therein.
  350. Its behavior is mostly compatible with the System V program of the same name.
  351. This version knows more magic, however, so it will produce
  352. different (albeit more accurate) output in many cases.
  353. .\" URL: http://www.opengroup.org/onlinepubs/009695399/utilities/file.html
  354. .Pp
  355. The one significant difference
  356. between this version and System V
  357. is that this version treats any white space
  358. as a delimiter, so that spaces in pattern strings must be escaped.
  359. For example,
  360. .Bd -literal -offset indent
  361. >10 string language impress\ (imPRESS data)
  362. .Ed
  363. .Pp
  364. in an existing magic file would have to be changed to
  365. .Bd -literal -offset indent
  366. >10 string language\e impress (imPRESS data)
  367. .Ed
  368. .Pp
  369. In addition, in this version, if a pattern string contains a backslash,
  370. it must be escaped.
  371. For example
  372. .Bd -literal -offset indent
  373. 0 string \ebegindata Andrew Toolkit document
  374. .Ed
  375. .Pp
  376. in an existing magic file would have to be changed to
  377. .Bd -literal -offset indent
  378. 0 string \e\ebegindata Andrew Toolkit document
  379. .Ed
  380. .Pp
  381. SunOS releases 3.2 and later from Sun Microsystems include a
  382. .Nm
  383. command derived from the System V one, but with some extensions.
  384. My version differs from Sun's only in minor ways.
  385. It includes the extension of the
  386. .Sq &
  387. operator, used as,
  388. for example,
  389. .Bd -literal -offset indent
  390. >16 long&0x7fffffff >0 not stripped
  391. .Ed
  392. .Sh MAGIC DIRECTORY
  393. The magic file entries have been collected from various sources,
  394. mainly USENET, and contributed by various authors.
  395. Christos Zoulas (address below) will collect additional
  396. or corrected magic file entries.
  397. A consolidation of magic file entries
  398. will be distributed periodically.
  399. .Pp
  400. The order of entries in the magic file is significant.
  401. Depending on what system you are using, the order that
  402. they are put together may be incorrect.
  403. If your old
  404. .Nm
  405. command uses a magic file,
  406. keep the old magic file around for comparison purposes
  407. (rename it to
  408. .Pa __MAGIC__.orig ).
  409. .Sh EXAMPLES
  410. .Bd -literal -offset indent
  411. $ file file.c file /dev/{wd0a,hda}
  412. file.c: C program text
  413. file: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV),
  414. dynamically linked (uses shared libs), stripped
  415. /dev/wd0a: block special (0/0)
  416. /dev/hda: block special (3/0)
  417. $ file -s /dev/wd0{b,d}
  418. /dev/wd0b: data
  419. /dev/wd0d: x86 boot sector
  420. $ file -s /dev/hda{,1,2,3,4,5,6,7,8,9,10}
  421. /dev/hda: x86 boot sector
  422. /dev/hda1: Linux/i386 ext2 filesystem
  423. /dev/hda2: x86 boot sector
  424. /dev/hda3: x86 boot sector, extended partition table
  425. /dev/hda4: Linux/i386 ext2 filesystem
  426. /dev/hda5: Linux/i386 swap file
  427. /dev/hda6: Linux/i386 swap file
  428. /dev/hda7: Linux/i386 swap file
  429. /dev/hda8: Linux/i386 swap file
  430. /dev/hda9: empty
  431. /dev/hda10: empty
  432. $ file -i file.c file /dev/{wd0a,hda}
  433. file.c: text/x-c
  434. file: application/x-executable
  435. /dev/hda: application/x-not-regular-file
  436. /dev/wd0a: application/x-not-regular-file
  437. .Ed
  438. .Sh HISTORY
  439. There has been a
  440. .Nm
  441. command in every
  442. .Dv UNIX since at least Research Version 4
  443. (man page dated November, 1973).
  444. The System V version introduced one significant major change:
  445. the external list of magic types.
  446. This slowed the program down slightly but made it a lot more flexible.
  447. .Pp
  448. This program, based on the System V version,
  449. was written by Ian Darwin <ian@darwinsys.com>
  450. without looking at anybody else's source code.
  451. .Pp
  452. John Gilmore revised the code extensively, making it better than
  453. the first version.
  454. Geoff Collyer found several inadequacies
  455. and provided some magic file entries.
  456. Contributions by the `&' operator by Rob McMahon, cudcv@warwick.ac.uk, 1989.
  457. .Pp
  458. Guy Harris, guy@netapp.com, made many changes from 1993 to the present.
  459. .Pp
  460. Primary development and maintenance from 1990 to the present by
  461. Christos Zoulas (christos@astron.com).
  462. .Pp
  463. Altered by Chris Lowth, chris@lowth.com, 2000:
  464. Handle the
  465. .Fl i
  466. option to output mime type strings, using an alternative
  467. magic file and internal logic.
  468. .Pp
  469. Altered by Eric Fischer (enf@pobox.com), July, 2000,
  470. to identify character codes and attempt to identify the languages
  471. of non-ASCII files.
  472. .Pp
  473. Altered by Reuben Thomas (rrt@sc3d.org), 2007 to 2008, to improve MIME
  474. support and merge MIME and non-MIME magic, support directories as well
  475. as files of magic, apply many bug fixes and improve the build system.
  476. .Pp
  477. The list of contributors to the
  478. .Sq magic
  479. directory (magic files)
  480. is too long to include here.
  481. You know who you are; thank you.
  482. Many contributors are listed in the source files.
  483. .Sh LEGAL NOTICE
  484. Copyright (c) Ian F. Darwin, Toronto, Canada, 1986-1999.
  485. Covered by the standard Berkeley Software Distribution copyright; see the file
  486. LEGAL.NOTICE in the source distribution.
  487. .Pp
  488. The files
  489. .Dv tar.h
  490. and
  491. .Dv is_tar.c
  492. were written by John Gilmore from his public-domain
  493. .Xr tar 1
  494. program, and are not covered by the above license.
  495. .Sh BUGS
  496. .Pp
  497. There must be a better way to automate the construction of the Magic
  498. file from all the glop in Magdir.
  499. What is it?
  500. .Pp
  501. .Nm
  502. uses several algorithms that favor speed over accuracy,
  503. thus it can be misled about the contents of
  504. text
  505. files.
  506. .Pp
  507. The support for text files (primarily for programming languages)
  508. is simplistic, inefficient and requires recompilation to update.
  509. .Pp
  510. The list of keywords in
  511. .Dv ascmagic
  512. probably belongs in the Magic file.
  513. This could be done by using some keyword like
  514. .Sq *
  515. for the offset value.
  516. .Pp
  517. Complain about conflicts in the magic file entries.
  518. Make a rule that the magic entries sort based on file offset rather
  519. than position within the magic file?
  520. .Pp
  521. The program should provide a way to give an estimate
  522. of
  523. .Sq how good
  524. a guess is.
  525. We end up removing guesses (e.g.
  526. .Sq From\
  527. as first 5 chars of file) because
  528. they are not as good as other guesses (e.g.
  529. .Sq Newsgroups:
  530. versus
  531. .Sq Return-Path:
  532. ).
  533. Still, if the others don't pan out, it should be possible to use the
  534. first guess.
  535. .Pp
  536. This manual page, and particularly this section, is too long.
  537. .Sh RETURN CODE
  538. .Nm
  539. returns 0 on success, and non-zero on error.
  540. .Sh AVAILABILITY
  541. You can obtain the original author's latest version by anonymous FTP
  542. on
  543. .Dv ftp.astron.com
  544. in the directory
  545. .Dv /pub/file/file-X.YZ.tar.gz