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