| Initial release | 1973 as part of Unix Research Version 4 |
|---|---|
| Operating system | Unix, Unix-like |
| Type | file type detector |
file is a standard Unix program for recognizing the type of data contained in a computer file.
Contents |
The original version of file originated in Unix Research Version 4[1] in 1973. System V brought a major update with several important changes, most notably moving the file type information into an external text file rather than compiling it into the binary itself.
All major BSD and Linux distributions use a free, open-source reimplementation which was written in 1986-87 by Ian Darwin[2] from scratch. It was expanded by Geoff Collyer in 1989 and since then has had input from many others, including Guy Harris, Chris Lowth and Eric Fischer; from late 1993 onward its maintenance has been organized by Christos Zoulas.
The Single Unix Specification (SUS) specifies that a series of tests are performed on the file specified on the command line:
file's position-sensitive tests are normally implemented by matching various locations within the file against a textual database of magic numbers (see the Usage section). This differs from other simpler methods such as file extensions and schemes like MIME.
In most implementations, the file command uses a database to drive the probing of the lead bytes. That database is implemented in a file called magic, whose location is usually in /etc/magic, /usr/share/file/magic or a similar location.
The SUS mandates the following options:
Other Unix and Unix-like operating systems may add extra options than these.
The command tells only what the file looks like, not what it is (in the case where file looks at the content). It is easy to fool the program by putting a magic number into a file the content of which does not match it. Thus the command is not usable as a security tool other than in specific situations.
# file file.c file.c: C program text
# file program
program: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked
(uses shared libs), stripped
# file /dev/wd0a /dev/wd0a: block special (0/0)
# file -s /dev/hda1 /dev/hda1: Linux/i386 ext2 filesystem
# file -s /dev/hda5 /dev/hda5: Linux/i386 swap file
# file compressed.gz
compressed.gz: gzip compressed data, deflated, original filename, `compressed', last
modified: Thu Jan 26 14:08:23 2006, os: Unix
# file data.ppm data.ppm: Netpbm PPM "rawbits" image data
$ file /Applications/Safari.app/Contents/MacOS/Safari /Applications/Safari.app/Contents/MacOS/Safari: Mach-O universal binary with 2 architectures /Applications/Safari.app/Contents/MacOS/Safari (for architecture ppc7400): Mach-O executable ppc /Applications/Safari.app/Contents/MacOS/Safari (for architecture i386): Mach-O executable i386
As of version 4.00 of the Ian Darwin/Christos Zoulas version of file, the functionality of file is incorporated into a libmagic library that is accessible via C (and C-compatible) linking;[3][4] file is implemented using that library.[5][6]
|
||||||||||||||||||||||||||||||||
Here you can share your comments or contribute with more information, content, resources or links about this topic.