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