$BASH environment variablefrom Rute-Users-Guide

Expands to the full pathname used to invoke this instance of bash.

$BASH_VERSION environment variablefrom Rute-Users-Guide

Expands to the version number of this instance of bash.

$CDPATH environment variablefrom Rute-Users-Guide

The search path for the cd command. This is a colon-separated list of directories in which the shell looks for destination directories specified by the cd command. A sample value is ``.:~:/usr''.

$ENV environment variablefrom Rute-Users-Guide

If this parameter is set when bash is executing a shell script, its value is interpreted as a filename containing commands to initialize the shell, as in .bashrc. The value of ENV is subjected to parameter expansion, command substitution, and arithmetic expansion before being interpreted as a pathname. PATH is not used to search for the resultant pathname.

$FIGNORE environment variablefrom Rute-Users-Guide

A colon-separated list of suffixes to ignore when performing filename completion (see READLINE below). A filename whose suffix matches one of the entries in FIGNORE is excluded from the list of matched filenames. A sample value is ``.o:~''.

$HISTCMD environment variablefrom Rute-Users-Guide

The history number, or index in the history list, of the current command. If HISTCMD is unset, it loses its special properties, even if it is subsequently reset.

$HISTCONTROL environment variablefrom Rute-Users-Guide

If set to a value of ignorespace, lines which begin with a space character are not entered on the history list. If set to a value of ignoredups, lines matching the last history line are not entered. A value of ignoreboth combines the two options. If unset, or if set to any other value than those above, all lines read by the parser are saved on the history list.

$HISTFILE environment variablefrom Rute-Users-Guide

The name of the file in which command history is saved. (See HISTORY below.) The default value is ~/.bash_history. If unset, the command history is not saved when an interactive shell exits.

$HISTFILESIZE environment variablefrom Rute-Users-Guide

The maximum number of lines contained in the history file. When this variable is assigned a value, the history file is truncated, if necessary, to contain no more than that number of lines. The default value is 500.

$HISTSIZE environment variablefrom Rute-Users-Guide

The number of commands to remember in the command history (see HISTORY below). The default value is 500.

$HOME environment variablefrom Rute-Users-Guide

The home directory of the current user; the default argument for the cd builtin command.

$HOSTFILEfrom Rute-Users-Guide

Contains the name of a file in the same format as /etc/hosts that should be read when the shell needs to complete a hostname. The file may be changed interactively; the next time hostname completion is attempted bash adds the contents of the new file to the already existing database.

$HOSTTYPEfrom Rute-Users-Guide

Automatically set to a string that uniquely describes the type of machine on which bash is executing. The default is system-dependent.

$IFSfrom Hacking-Lexicon

In UNIX, the $IFS variable separates commands. It is usually conigured to be the semicolon (;) and newline characters. However, it can be reconfigured to be other characters as well. Data-driven attacks will sometimes seek to reset the IFS variable (e.g. IFS=x), then cause execution within the data field wihtout having to insert shell metacharacters. Tidbit: On Linux, the $FF variable may also be used like $IFS.

$IFS

The Internal Field Separator that is used for word splitting after expansion and to split lines into words with the read builtin command. The default value is ``<space><tab><newline>''. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

$IGNOREEOFfrom Rute-Users-Guide

Controls the action of the shell on receipt of an EOF character as the sole input. If set, the value is the number of consecutive EOF characters typed as the first characters on an input line before bash exits. If the variable exists but does not have a numeric value, or has no value, the default value is 10. If it does not exist, EOF signifies the end of input to the shell. This is only in effect for interactive shells.

$INPUTRC environment variablefrom Rute-Users-Guide

The filename for the readline startup file, overriding the default of ~ /.inputrc (see READLINE below).

$LINENOfrom Rute-Users-Guide

Each time this parameter is referenced, the shell substitutes a decimal number representing the current sequential line number (starting with 1) within a script or function. When not in a script or function, the value substituted is not guaranteed to be meaningful. When in a function, the value is not the number of the source line that the command appears on (that information has been lost by the time the function is executed), but is an approximation of the number of simple commands executed in the current function. If LINENO is unset, it loses its special properties, even if it is subsequently reset.

$MAILfrom Rute-Users-Guide

If this parameter is set to a filename and the MAILPATH variable is not set, bash informs the user of the arrival of mail in the specified file.

$MAILCHECKfrom Rute-Users-Guide

Specifies how often (in seconds) bash checks for mail. The default is 60 seconds. When it is time to check for mail, the shell does so before prompting. If this variable is unset, the shell disables mail checking.

$MAILPATHfrom Rute-Users-Guide

A colon-separated list of pathnames to be checked for mail. The message to be printed may be specified by separating the pathname from the message with a `?'. $_ stands for the name of the current mailfile. Example: MAILPATH='/usr/spool/mail/bfox?"You have mail":~/shell-mail?"$_ has mail!"' Bash supplies a default value for this variable, but the location of the user mail files that it uses is system dependent (e.g., / usr/spool/mail/$USER).

$MAIL_WARNINGfrom Rute-Users-Guide

If set, and a file that bash is checking for mail has been accessed since the last time it was checked, the message ``The mail in mailfile has been read'' is printed.

$OLDPWDfrom Rute-Users-Guide

The previous working directory as set by the cd command.

$OSTYPEfrom Rute-Users-Guide

Automatically set to a string that describes the operating system on which bash is executing. The default is system-dependent.

$PATHfrom Rute-Users-Guide

The search path for commands. It is a colon-separated list of directories in which the shell looks for commands (see COMMAND EXECUTION below). The default path is system-dependent, and is set by the administrator who installs bash. A common value is ``/usr/gnu/bin:/usr/ local/bin:/usr/ucb:/bin:/usr/bin:.''.

$PATHfrom Complete-Idiot's Guide to Linux
The shell looks for commands and programs in a list of file paths stored in the PATH environment variable. An environment variable stores information in a place where other programs and commands can access it. Environment variables store information such as the shell that you are using, your login name, and your current working directory. To see a list of all the environment variables currently defined; type 'set' at the prompt. When you type a command at the shell prompt, the shell will look for that command's program file in each directory listed in the PATH variable, in order. The first program found matching the command you typed will be run. If the command's program file is not in a directory listed in you PATH environment variable, the shell returns a "commands not found" error. By default, the shell does not look in your current working directory or your home directory for commands This is really a security mechanism so that you don't execute programs by accident. What if a malicious user put a harmful program called ls in your home directory? If you typed ls and the shell looked for the fake program in your home directory before the real program in the /bin directory, what do you think woul dhappen? If you thought bad things, you are on the right track. Since your PATH doesn't have the current directory as one of its search locations, programs in your current directory must be called with an absolute path of a relative path specified as './program-name'. To see what directories are part of your PATH enter this command: # echo $PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/ bin/X11
$PROMPT_COMMANDfrom Rute-Users-Guide

If set, the value is executed as a command prior to issuing each primary prompt.

$PS1from Rute-Users-Guide

The value of this parameter is expanded (see PROMPTING below) and used as the primary prompt string. The default value is ``bash\$ ''.

$PS2from Rute-Users-Guide

The value of this parameter is expanded and used as the secondary prompt string. The default is ``> ''.

$PS3from Rute-Users-Guide

The value of this parameter is used as the prompt for the select command (see SHELL GRAMMAR above).

$PS4

The value of this parameter is expanded and the value is printed before each command bash displays during an execution trace. The first character of PS4 is replicated multiple times, as necessary, to indicate multiple levels of indirection. The default is ``+ ''. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

$PWDfrom Rute-Users-Guide

The current working directory as set by the cd command.

$RANDOMfrom Rute-Users-Guide

Each time this parameter is referenced, a random integer is generated. The sequence of random numbers may be initialized by assigning a value to RANDOM. If RANDOM is unset, it loses its special properties, even if it is subsequently reset.

$SECONDSfrom Rute-Users-Guide

Each time this parameter is referenced, the number of seconds since shell invocation is returned. If a value is assigned to SECONDS. the value returned upon subsequent references is the number of seconds since the assignment plus the value assigned. If SECONDS is unset, it loses its special properties, even if it is subsequently reset.

$SHLVLfrom Rute-Users-Guide

Incremented by one each time an instance of bash is started.

.#01

and higher A method of numbering picture files for a roll of film that has been scanned for computer presentation From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.$$$

Used by OS/2 to keep track of archived files From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.(Pagis)from Whatis-Extensions

native format

.000from Whatis-Extensions

Data file (GEOWorks)

.000-20009from Whatis-Extensions

Used to number old (backup) versions of files (for example, CONFIG.SYS when changed by an installation program); also used to number

.001-999from Whatis-Extensions

Database index files used by (Superbase)

.1-STEPfrom Whatis-Extensions

Backup file (Iomega Backup)

.113from Whatis-Extensions

Backup data file (Iomega Backup)

.123from Whatis-Extensions

Lotus 123 97 file

.12Mfrom Whatis-Extensions

Smartmaster file (Lotus 1-2-3 '97)

.1ST

Documenting wizard list (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.2Dfrom Whatis-Extensions

Two-dimensional drawing file (VersaCAD) (http://www.versacad.com/ vcadhome.htm)

.2GRfrom Whatis-Extensions

and 3GR VGA Graphics driver/configuration files (Microsoft Windows)

.386from Whatis-Extensions

A file for use in an 80386 or higher microprocessor

.3Dfrom Whatis-Extensions

Three-dimensional drawing file (VersaCAD) (http://www.versacad.com/ vcadhome.htm)

.3DMfrom Whatis-Extensions

3D NURBS modeler, (Rhino)

.3DSfrom Whatis-Extensions

A file in 3D Studio (for DOS) format

.411from Whatis-Extensions

Data file (Used by digital cameras)

.4GEfrom Whatis-Extensions

Compiled code (Informix 4GL)

.4GLfrom Whatis-Extensions

Source code (Informix 4GL)

.4Vfrom Whatis-Extensions

Music file (Quartet)

.669

Music mod file (Composer 669)(Unis Composer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.669from Whatis-Extensions

Tracker module (Composer 669)

.8from Whatis-Extensions

Source file (Assembly) (Similar to Microsoft Assembler)

.@@@from Whatis-Extensions

Screen files used in the installation and instruction on use of such applications as Microsoft Codeview for C

.afrom Rute-Users-Guide

Archive. lib*.a is a static library.

.Afrom Whatis-Extensions

Library file (Unix)

.Afrom Whatis-Extensions

Object code library

.A3Lfrom Whatis-Extensions

Authorware 3.x library

.A3Mfrom Whatis-Extensions

Authorware MacIntosh file (unpackaged)

.A3Wfrom Whatis-Extensions

Authorware Windows file (unpackaged)

.A4Lfrom Whatis-Extensions

Authorware 4.x library

.A4Mfrom Whatis-Extensions

Authorware MacIntosh file (unpackaged)

.A4P

Authorware file (packaged without runtime) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.A4Wfrom Whatis-Extensions

Authorware Windows file (unpackaged)

.A5Lfrom Whatis-Extensions

Authorware 5.x library

.A5Wfrom Whatis-Extensions

Authorware Windows file (unpackaged)

.AAfrom Whatis-Extensions

Audible audio file (commonly used for downloadable audio books)

.AAMfrom Whatis-Extensions

Authorware shocked file

.AASfrom Whatis-Extensions

Authorware shocked packet

.ABfrom Whatis-Extensions

Applix Builder file

.ABFfrom Whatis-Extensions

Adobe Binary Screen Font

.ABKfrom Whatis-Extensions

Backup file (PrintMaster Gold)

.ABKfrom Whatis-Extensions

Corel Draw AutoBackup

.ABMfrom Whatis-Extensions

Audio album file (HitPlayer)

.ABOfrom Whatis-Extensions

Applix Builder Turbo file

.ABSfrom Whatis-Extensions

MPEG Audio Sound file

.ABSfrom Whatis-Extensions

Sometimes used to denote an abstract (as in an abstract or summary of a scientific paper) AutoBackup

.ABSfrom Whatis-Extensions

Standard GNU compiler output file for a PC platform

.ACAfrom Whatis-Extensions

HTTP animation file (Microsoft Agent)

.ACAfrom Whatis-Extensions

Project Manager Workbench file

.ACBfrom Whatis-Extensions

ACBM Graphic image

.ACCfrom Whatis-Extensions

DR-DOS Viewmax file

.ACD

Character definiton file (Microsoft Agent) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.ACE

ACE Archiver Compression <http://searchStorage.techtarget.com/ sDefinition/0,,sid5_gci211828,00.html> file From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.ACFfrom Whatis-Extensions

HTTP character file (Microsoft Agent)

.ACIfrom Whatis-Extensions

ACI development appraisal (ACIWEB)

.ACLfrom Whatis-Extensions

Corel Draw 6 keyboard accelerator file

.ACMfrom Whatis-Extensions

Dynamic Link Library (DLL)

.ACMfrom Whatis-Extensions

Interplay compressed sound file (Fallout 1,2, Baulder's Gate)

.ACMfrom Whatis-Extensions

Windows system directory file

.ACPfrom Whatis-Extensions

Microsoft Office Assistant Preview file

.ACRfrom Whatis-Extensions

American College of Radiology file

.ACSfrom Whatis-Extensions

Character structered storage file (Microsoft Agent)

.ACTfrom Whatis-Extensions

Action Presentation

.ACTfrom Whatis-Extensions

Documenting wizard action diagram (Microsoft Visual FoxPro)

.ACTfrom Whatis-Extensions

FoxPro Foxdoc Action Diagram

.ACTfrom Whatis-Extensions

Microsoft Office Assistant Actor file

.ACV

Used to Compress and decompress audio data From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.ADfrom Whatis-Extensions

After Dark screensaver

.Adafrom Whatis-Extensions

<http://search390.techtarget.com/sDefinition/0,,sid10_gci211523,00.html> Ada source text file (non-GNAT)

.ADBfrom Whatis-Extensions

Ada source text body file (GNAT)

.ADBfrom Whatis-Extensions

HP 100LX Organizer Appointment database

.ADCfrom Whatis-Extensions

Scanstudio 16 color Bitmap Graphic file

.ADD

OS/2 adapter driver file used in the boot process From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADFfrom Whatis-Extensions

Amiga <http://WhatIs.techtarget.com/definition/0,,sid9_gci211557,00.html > disk file

.ADI

AutoCAD device-independent binary plotter file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADLfrom Whatis-Extensions

QEMM Mca adaptor description library

.ADM

After Dark MultiModule screensaver (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADM

Windows NT <http://searchWin2000.techtarget.com/sDefinition/ 0,,sid1_gci213368,00.html> policy template From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.ADNfrom Whatis-Extensions

Lotus 1-2-3 Add-In file

.ADPfrom Whatis-Extensions

Astound Dynamite file

.ADPfrom Whatis-Extensions

Dynamic Page file (AOLserver)

.ADPfrom Whatis-Extensions

FaxWorks Faxmodem setup file

.ADRfrom Whatis-Extensions

After Dark Randomizer screensaver

.ADRfrom Whatis-Extensions

Smart Address address book

.ADS

Ada source text specification file (GNAT) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.ADTfrom Whatis-Extensions

AdTech Fax file

.ADT

HP NewWave datafile for card applications From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.ADXfrom Whatis-Extensions

Archetype Designer Document

.ADXfrom Whatis-Extensions

Dynazip Active Delivery script

.ADXfrom Whatis-Extensions

Lotus Approach dBase Index

.ADZfrom Whatis-Extensions

Packed ADF file (Extracts with WinZip)

.AEfrom Whatis-Extensions

Author/Editor file (SoftQuad)

.AEPfrom Whatis-Extensions

ArcExplorer project file

.AF2from Whatis-Extensions

ABC FlowCharter 2.0 Flowchart

.AF3from Whatis-Extensions

ABC Flowchart

.AFCfrom Whatis-Extensions

Apple Sound file

.AFIfrom Whatis-Extensions

Truevision Bitmap graphic

.AFMfrom Whatis-Extensions

Adobe metrics

.AFMfrom Whatis-Extensions

HP NewWave Cardfile application

.AGfrom Whatis-Extensions

Applix graphic

.AIfrom Whatis-Extensions

Adobe Illustrator drawing

.AIfrom Whatis-Extensions

Corel Trace drawing

.AIFfrom Whatis-Extensions

Audio Interchange File, a sound format used by Silicon Graphics and Macintosh applications

.AIFCfrom Whatis-Extensions

Similar to AIF (compressed)

.AIFFfrom Whatis-Extensions

<http://WhatIs.techtarget.com/definition/0,,sid9_gci213472,00.html> Similar to AIF

.AIMfrom Whatis-Extensions

AOL Instant Messenger Launch file

.AINfrom Whatis-Extensions

AIN Compressed archive

.AIOfrom Whatis-Extensions

APL transfer file

.AISfrom Whatis-Extensions

ACDSee Image Sequence

.AISfrom Whatis-Extensions

Velvet Studio Instruments file

.AISfrom Whatis-Extensions

Xerox Arry of Intensity Samples Graphic

.AIXfrom Whatis-Extensions

HP NewWave Cardfile Application data

.AKWfrom Whatis-Extensions

Contains all A-keywords in the RoboHELP Help Project Index Designer not associated with topics

.ALAWfrom Whatis-Extensions

European Telephony audio

.ALBfrom Whatis-Extensions

JASC Image Commander album

.ALIfrom Whatis-Extensions

Document file (SAP proprietary format)

.ALIASfrom Whatis-Extensions

Alias Image

.aliasfrom Rute-Users-Guide

X Window System font alias catalog.

.ALLfrom Whatis-Extensions

Arts & Letters Library

.ALLfrom Whatis-Extensions

WordPerfect for Windows General printer information file

.ALSfrom Whatis-Extensions

Alias Image

.ALTfrom Whatis-Extensions

WordPerfect Library Menu

.AMfrom Whatis-Extensions

Applix SHELF Macro

.AMFfrom Whatis-Extensions

DSMIA/Asylum module music (Crusader,No Remorse,Aladdin)

.AMFfrom Whatis-Extensions

Music file (Advanced Module Format)

.AMGfrom Whatis-Extensions

ACTOR System image

.AMGfrom Whatis-Extensions

AMGC Compressed archive

.AMIfrom Whatis-Extensions

Annotation file (Cocreate SolidDesigner)

.AMSfrom Whatis-Extensions

Extreme's Tracker module

.AMSfrom Whatis-Extensions

Velvet Studio music module (MOD) file

.ANfrom Whatis-Extensions

Text file (Sterling Software) (Groundworks COOL Business Team Model)

.ANCfrom Whatis-Extensions

Canon Computer Pattern Maker file that is a selectable list of

.ANIfrom Whatis-Extensions

Microsoft Windows Animated cursor

.ANMfrom Whatis-Extensions

DeluxPaint Animation

.ANNfrom Whatis-Extensions

Windows 3.x Help annotation

.ANSfrom Whatis-Extensions

ANSI <http://searchCIO.techtarget.com/sDefinition/ 0,,sid19_gci213776,00.html> Text file

.ANTfrom Whatis-Extensions

SimAnt for Windows saved game

.AOSfrom Whatis-Extensions

Nokia 9000 Add-on software

.AOTfrom Whatis-Extensions

Applicatio binary object template file (ZenWorks snAPPshot)

.APfrom Whatis-Extensions

Applix Presents file

.APfrom Whatis-Extensions

WHAP Compressed Amiga archive

.APCfrom Whatis-Extensions

Compiled application file (Centura Team Developer)

.APCfrom Whatis-Extensions

Lotus 1-2-3 Printer driver

.APDfrom Whatis-Extensions

Dynamic application library file (Centura Team Developer)

.APDfrom Whatis-Extensions

Lotus 1-2-3 Printer driver

.APFfrom Whatis-Extensions

Lotus 1-2-3 Printer driver

.APF

Project file (Allaire) (Created by Homesite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APIfrom Whatis-Extensions

Application Program Interface; used by Adobe Acrobat <http:// searchCIO.techtarget.com/sDefinition/0,,sid19_gci211517,00.html>

.APIfrom Whatis-Extensions

Lotus 1-2-3 Printer driver

.APLfrom Whatis-Extensions

APL Workspace file

.APL

Application library file (Centura Team Developer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APPfrom Whatis-Extensions

dBase Application Generator Object

.APPfrom Whatis-Extensions

DR-DOS Executable Application

.APPfrom Whatis-Extensions

FoxPro Generated Application

.APPfrom Whatis-Extensions

Generated application or active document (Microsoft Visual FoxPro)

.APPfrom Whatis-Extensions

Normal mode application file (Centura Team Developer)

.APPfrom Whatis-Extensions

Symphony Add-in Application

.APRfrom Whatis-Extensions

ArcView project file

.APR

Employee Appraiser Performance Review file From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.APRfrom Whatis-Extensions

Lotus Approach 97 View file

.APSfrom Whatis-Extensions

Advanced patching systems with error checking, (Similar to IPS)

.APSfrom Whatis-Extensions

Microsoft Visual C++ file

.APTfrom Whatis-Extensions

Lotus Approach Data view file

.APTfrom Whatis-Extensions

Text mode application file (Centura Team Developer)

.APXfrom Whatis-Extensions

Borland C++ Appexpert database

.APX

Lotus Approach Paradox-Specific information file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AQfrom Whatis-Extensions

Applix data

.ARCfrom Whatis-Extensions

LH ARC (old version) compressed archive

.ARCfrom Whatis-Extensions

SQUASH Compressed archive

.ARFfrom Whatis-Extensions

Automatic Response file

.ARIfrom Whatis-Extensions

ARI Compressed archive

.ARIfrom Whatis-Extensions

Aristotle audio file

.ARJfrom Whatis-Extensions

Robert Jung ARJ compressed archive (ARJ)

.ARKfrom Whatis-Extensions

ARC File Archiver CPM/Port archive

.ARLfrom Whatis-Extensions

AOL v4.0 organizer file

.ARRfrom Whatis-Extensions

Atari Cubase Arrangement

.ARTfrom Whatis-Extensions

AOL Image file compressed using the Johson-Grace compression algorithm

.ARTfrom Whatis-Extensions

Canon Crayola art

.ARTfrom Whatis-Extensions

Clip Art

.ARTfrom Whatis-Extensions

First Publisher Raster graphic

.ARTfrom Whatis-Extensions

Ray Tracer file

.ARTfrom Whatis-Extensions

Xara Studio drawing

.ARXfrom Whatis-Extensions

ARX Compressed Archive

.ASfrom Whatis-Extensions

Applix Spreadsheet

.ASA

Microsoft Visual InterDev <http://searchDatabase.techtarget.com/ sDefinition/0,,sid13_gci213682,00.html> file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASCfrom Whatis-Extensions

ASCII <http://WhatIs.techtarget.com/definition/0,,sid9_gci211600,00.html > text file

.ASCfrom Whatis-Extensions

PGP <http://searchSecurity.techtarget.com/sDefinition/ 0,,sid14_gci214292,00.html> armored encrypted <encrypti.htm> file

.ASDfrom Whatis-Extensions

Astound Presentation

.ASDfrom Whatis-Extensions

Lotus 1-2-3 Screen driver

.ASDfrom Whatis-Extensions
Microsoft Advanced Streaming Format (ASF) description file; opens
.ASDfrom Whatis-Extensions

WinWord AutoSave file

.ASEfrom Whatis-Extensions

Velvet Studio Sample file

.ASFfrom Whatis-Extensions

Lotus 1-2-3 Screen font

.ASFfrom Whatis-Extensions

Microsoft Advanced Streaming Format

.ASFfrom Whatis-Extensions

Music file (Electronic Arts)

.ASFfrom Whatis-Extensions

StratGraphics Datafile

.ASHfrom Whatis-Extensions

TASM 3.0 Assembly language header

.ASI

Borland C++/Turbo C Assembler Include file From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.ASM

Assembler <http://search390.techtarget.com/sDefinition/ 0,,sid10_gci211604,00.html> Language source file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASMfrom Whatis-Extensions

Pro/E assembly file

.ASOfrom Whatis-Extensions

Astound Dynamite Object

.ASPfrom Whatis-Extensions

<http://searchWin2000.techtarget.com/sDefinition/ 0,,sid1_gci213787,00.html> Active Server Page (an HTML file containing a Microsoft server-processed script)

.ASPfrom Whatis-Extensions

Astound Presentation

.ASPfrom Whatis-Extensions

Procomm Plus setup and connection script

.ASTfrom Whatis-Extensions

Astound multimedia file

.ASTfrom Whatis-Extensions

Claris Works "assistant" file

.ASVfrom Whatis-Extensions

DataCAD Autosave file

.ASXfrom Whatis-Extensions

Cheyenne Backup script

.ASX

Microsoft Advanced Streaming Redirector file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASXfrom Whatis-Extensions

Video file

.AT2from Whatis-Extensions

Aldus Persuasion 2.0 Auto Template

.ATMfrom Whatis-Extensions

Adobe Type Manager data/info file

.ATTfrom Whatis-Extensions

AT&T Group 4 bitmap

.ATWfrom From Whatis-Extensions

AnyTime Deluxe for Windows personal information manager file

.aufrom Rute-Users-Guide

Audio format (original Sun Microsystems generic sound file).

.AUfrom Whatis-Extensions

Audio U-law (pronounced mu-law)

.AUfrom Whatis-Extensions

Sun/NeXT/DEC/UNIX sound file

.AUDfrom Whatis-Extensions

Audio file (Westwood Studios) (Kyrandia 3,C&C,RedAlert,C&C:TS)

.AUXfrom Whatis-Extensions

ChiWriter Auxilliary Dictionary file

.AUXfrom Whatis-Extensions

TeX/LaTeX Auxilliary Reference file

.AVAfrom Whatis-Extensions

Avagio Publication

.AVBfrom Whatis-Extensions

Inculan Anti-Virus virus infected file

.AVIfrom Whatis-Extensions

Microsoft Audio Video Interleaved file for Windows movie

.avifrom Rute-Users-Guide

Video format.

.AVRfrom Whatis-Extensions

Audio Visual Research file

.AVSfrom Whatis-Extensions

Application Visualization System file

.AVSfrom Whatis-Extensions

Stardent AVS-X Image

.AVXfrom Whatis-Extensions

File Extension (ArcView)

.AWfrom Whatis-Extensions

Applix Words file

.AWfrom Whatis-Extensions

HP AdvanceWrite Text file

.AWDfrom Whatis-Extensions

FaxView Document image

.awkfrom Rute-Users-Guide

awk program source file.

.AWKfrom Whatis-Extensions

AWK Script/Program

.AWMfrom Whatis-Extensions

Animation Works Movie

.AWRfrom Whatis-Extensions

Telsis file for digitally stored audio

.AWSfrom Whatis-Extensions

StatGraphics Data file

.AXLfrom Whatis-Extensions

ArcIMS XML project file

.AXTfrom Whatis-Extensions

ASCII application object template (ZenWorks snAPPshot)

.AXXfrom a multi-volume archive (xx = a number from 01 to 99) From Whatis-Extensions

ARJ compressed file

.Bfrom Whatis-Extensions

Applause Batch list

.B&Wfrom Whatis-Extensions

1st Reader Mono binary screen image

.B&Wfrom Whatis-Extensions

Atari/Macintosh black and white graphic

.B1N

1st Reader Mono and color binary screen image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.B30from Whatis-Extensions

ABC Ventura publisher printer font

.B4from Whatis-Extensions

Helix Nuts and Bolts file

.B8from Whatis-Extensions

Raw graphic file (Piclab Plane II)

.BADfrom Whatis-Extensions

Oracle bad file

.BAKfrom Whatis-Extensions

Backup file

.BALfrom Whatis-Extensions

Ballade Music score

.BARfrom Whatis-Extensions

dBase Application Generator Horizontal menu object

.BASfrom Whatis-Extensions

BASIC <http://searchVB.techtarget.com/sDefinition/ 0,,sid8_gci213805,00.html> source code

.BATfrom Whatis-Extensions

Batch file <http://searchWin2000.techtarget.com/sDefinition/ 0,,sid1_gci211642,00.html>

.BBfrom Whatis-Extensions

Papyrus Database backup

.BBLfrom Whatis-Extensions

TeX/BibTeX Bibliographic reference file

.BBMfrom Whatis-Extensions

Deluxe Paint Bitmap image

.BBSfrom Whatis-Extensions

Bulletin Board Sytem text

.BCHfrom Whatis-Extensions

Batch Process Object (dBase Application Generator)

.BCHfrom Whatis-Extensions

Datalex Entry Point 90 Data file

.BCMfrom Whatis-Extensions

Microsoft Works Communications file

.BCOfrom Whatis-Extensions

Bitstream Outline font description file

.BCPfrom Whatis-Extensions

Borland C++ Makefile

.BCW

Borland C++ 4.5 Environment settings file From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.BDBfrom Whatis-Extensions

Microsoft Works Dababase file

.BDFfrom Whatis-Extensions

Egret Datafile

.BDFfrom Whatis-Extensions

West Point Bridge Designer file

.BDRfrom Whatis-Extensions

Microsoft Publisher Border

.BEZfrom Whatis-Extensions

Bitstream Outline font description

.BF2from Whatis-Extensions

Bradford 2 Font

.BFCfrom Whatis-Extensions

Windows 95 Briefcase Document

.BFMfrom Whatis-Extensions

Font Metrics file (Unix/Mainframe)

.BFXfrom Whatis-Extensions

Fax document file (BitFax)

.BGfrom Whatis-Extensions

Microsoft Backgammon Game file

.BGAfrom Whatis-Extensions

OS/2 Graphic array

.BGIfrom Whatis-Extensions

Borland Graphics Interface Driver

.BGLfrom Whatis-Extensions

Microsoft Flight Simulator Scenery file

.BHFfrom Whatis-Extensions

pcAnywhere Host file

.BIfrom Whatis-Extensions

Binary <http://WhatIs.techtarget.com/definition/ 0,,sid9_gci211661,00.html> file

.BIBfrom Whatis-Extensions

Bibliography file (ASCII)

.bibfrom Rute-Users-Guide

bibtex LATEX bibliography source file.

.BIBfrom Whatis-Extensions

Database

.BIBfrom Whatis-Extensions

TeX/BibTeX Literature Database

.BIFfrom Whatis-Extensions

GroupWise initialization file

.BIFfrom Whatis-Extensions

Image Capture Board Binary Image black & white graphic

.BIFFfrom Whatis-Extensions

XLITE 3D file

.BINfrom Whatis-Extensions

Binary <http://WhatIs.techtarget.com/definition/ 0,,sid9_gci211661,00.html> file

.BIOfrom Whatis-Extensions

OS/2 Bios file

.BITfrom Whatis-Extensions

X11 Bitmap

.BKfrom Whatis-Extensions

Backup file (Generic)

.BKfrom Whatis-Extensions

JetFax Faxbook file

.BK!from Whatis-Extensions

WordPerfect for Windows Document backup

.BK$from Whatis-Extensions

Backup file (Generic)

.BK1from Whatis-Extensions

WordPerfect for Windows Timed backup file for document window 1

.BK2from Whatis-Extensions

WordPerfect for Windows Timed backup file for document window 2

.BK3from Whatis-Extensions

WordPerfect for Windows Timed backup file for document window 3

.BK4from Whatis-Extensions

WordPerfect for Windows Timed backup file for document window 4

.BK5from Whatis-Extensions

WordPerfect for Windows Timed backup file for document window 5

.BK6from Whatis-Extensions

WordPerfect for Windows Timed backup file for document window 6

.BK7from Whatis-Extensions

WordPerfect for Windows Timed backup file for document window 7

.BK8from Whatis-Extensions

WordPerfect for Windows Timed backup file for document window 8

.BK9from Whatis-Extensions

WordPerfect for Windows Timed backup file for document window 9

.BKPfrom Whatis-Extensions

TurboVidion Dialog Designer Backup

.BKSfrom Whatis-Extensions

IBM BookManager Read bookshelf file

.BKSfrom Whatis-Extensions

Microsoft Works Spreadsheet Backup

.BKWfrom Whatis-Extensions

FontEdit Fontset mirror image

.BLB

Resource archive (DreamWorks),(Neverhood) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.BLDfrom Whatis-Extensions

BASIC Bloadable picture file

.BLKfrom Whatis-Extensions

Alias Wavefront Image

.BLKfrom Whatis-Extensions

WordPerfect for Windows Temporary file

.BMfrom Whatis-Extensions

Windows system Bitmap

.BM1from Whatis-Extensions

Apogee BioMenace data

.BMFfrom Whatis-Extensions

Corel Gallery file

.BMKfrom Whatis-Extensions

Windows Help bookmark

.bmpfrom Rute-Users-Guide

Microsoft Bitmap file image format.

.BMPfrom Whatis-Extensions

Windows or OS/2 bitmap

.BNfrom Whatis-Extensions

Instrument bank file (AdLib)

.BNKfrom Whatis-Extensions

Instrument Bank file (AdLib)

.BNK

Sound effects bank file (Electronic Arts) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.BOLfrom Whatis-Extensions

Compressed archive library file (Microsoft Booasm.arc)

.BOM

Bill of materials file (Orcad Schematic Capture) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BOOfrom Whatis-Extensions

Microsoft Booasm.arc Compressed archive

.BOOKfrom Whatis-Extensions

Adobe FrameMaker Book

.BOXfrom Whatis-Extensions

Lotus Notes file

.BPCfrom Whatis-Extensions

Business Plan Toolkit Chart

.BPLfrom Whatis-Extensions

Borland Delphi 4 packed library

.BPSfrom Whatis-Extensions

Microsoft Works Document

.BPTfrom Whatis-Extensions

CorelDraw Bitmap fills file

.BPXfrom Whatis-Extensions

Truevision Targa Bitmap

.BQYfrom Whatis-Extensions

BrioQuery file

.BRfrom Whatis-Extensions

Bridge Script

.BRDfrom Whatis-Extensions

Eagle Layout file

.BRKfrom Whatis-Extensions

Brooktrout Fax-Mail file

.BRWfrom Whatis-Extensions

Application file associated with financial institution(s) loan applications

.BRXfrom Whatis-Extensions

A file for browsing an index of multimedia options

.BRZ

DbBRZ file for very large Db backup or restore From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BS1from Whatis-Extensions

Apogee Blake Stone data file

.BSAfrom Whatis-Extensions

BSARC Compressed archive

.BSCfrom Whatis-Extensions

Apple II Compressed archive

.BSCfrom Whatis-Extensions

Fortran Pwbrmake Object

.BSC

MS Developer Studio (MSDev) browser information From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BSPfrom Whatis-Extensions

Quake map file

.BS_

Microsoft Bookshelf Find Menu shell extension From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BTMfrom Whatis-Extensions

Batch <http://search390.techtarget.com/sDefinition/ 0,,sid10_gci211641,00.html> file used by Norton Utilities

.BTRfrom Whatis-Extensions

Database file (Btrieve 5.1)

.BUDfrom Whatis-Extensions

Backup disk for Quicken

.BUGfrom Whatis-Extensions

Bugs and Problems file

.BUNfrom Whatis-Extensions

CakeWalk Audio Bundle (a MIDI <http://WhatIs.techtarget.com/definition/ 0,,sid9_gci212572,00.html> program)

.BUPfrom Whatis-Extensions

Backup

.BUTfrom Whatis-Extensions

Buttons! Button definition

.BUYfrom Whatis-Extensions

Movie data file

.BV1from Whatis-Extensions

WordPerfect for Windows Overflow file below insert point in document 1

.BV2from Whatis-Extensions

WordPerfect for Windows Overflow file below insert point in document 2

.BV3from Whatis-Extensions

WordPerfect for Windows Overflow file below insert point in document 3

.BV4from Whatis-Extensions

WordPerfect for Windows Overflow file below insert point in document 4

.BV5from Whatis-Extensions

WordPerfect for Windows Overflow file below insert point in document 5

.BV6from Whatis-Extensions

WordPerfect for Windows Overflow file below insert point in document 6

.BV7from Whatis-Extensions

Wordperfect for Windows Overflow file below insert point in document 7

.BV8from Whatis-Extensions

WordPerfect for Windows Overflow file below insert point in document 8

.BV9from Whatis-Extensions

WordPerfect for Windows Overflow file below insert point in document 9

.BWfrom Whatis-Extensions

SGI Black and White image file

.BWfrom Whatis-Extensions

Silicon Graphics Raw red,green and blue bytes file

.BWBfrom Whatis-Extensions

Visual Baler Spreadsheet application

.BWRfrom Whatis-Extensions

Kermit Beware buglist

.BWVfrom Whatis-Extensions

Business Wave file

.BYUfrom Whatis-Extensions

BYU Movie

.BZfrom Whatis-Extensions

Bzip compressed file (Inix)

.bzfrom Rute-Users-Guide

File compressed with the bzip compression algorithm/program. These files are mostly redundant now. The vast majority of files are compressed using the superior bzip2 program.

.BZ2

Bzip compressed file (Unix) (replaces Bz) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.bz2from Rute-Users-Guide

File compressed with the bzip2 compression program.

.B_Wfrom Whatis-Extensions

Atari/Macintosh black and white graphic

.Cfrom Whatis-Extensions

C code

.cfrom Rute-Users-Guide

C program source code.

.Cfrom Whatis-Extensions

Site configuration for Secure Remote (CheckPoint VPN)

.C--from Whatis-Extensions

Sphinx C-- Source code

.C00from Whatis-Extensions

Ventura Publisher Print file

.C01from Whatis-Extensions

Typhoon wave

.C86from Whatis-Extensions

Computer Innovation (C86) Source code

.CAfrom Whatis-Extensions

Telnet Server Initial cache data file

.CABfrom Whatis-Extensions

Microsoft cabinet file (program files compressed for software distribution)

.CACfrom Whatis-Extensions

dBase IV Executable file

.CADfrom Whatis-Extensions

Softdesk Drafix Cad file

.CAGfrom Whatis-Extensions

Catalog file (Microsoft Clip Gallery v. 2.x,3.x,4.x)

.CALfrom Whatis-Extensions

Calendar schedule data file

.CALfrom Whatis-Extensions

CALS Compressed Bitmap

.CALfrom Whatis-Extensions

SuperCalc 4/5 Spreadsheet

.CAMfrom Whatis-Extensions

Casio camera file

.CANfrom Whatis-Extensions

Navigator Fax

.CAPfrom Whatis-Extensions

Compressed music file

.CAPfrom Whatis-Extensions

Telix Session Capture file

.CAPfrom Whatis-Extensions

Ventura Publisher Caption

.CARfrom Whatis-Extensions

AtHome assistant file

.CASfrom Whatis-Extensions

Comma-delimited ASCII file

.CATfrom Whatis-Extensions

dBase Catalogue file

.CAT

Quicken IntelliCharge categorization file From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.CBfrom Whatis-Extensions

Microsoft clean boot <http://searchWin2000.techtarget.com/sDefinition/ 0,,sid1_gci211696,00.html> file

.CBCfrom Whatis-Extensions

CubiCalc Fuzzy Logic System file

.CBIfrom Whatis-Extensions

Column binary file (used in IBM mainframe systems)

.CBLfrom Whatis-Extensions

Cobol Source code

.CBMfrom Whatis-Extensions

XLib Compiled Bitmap

.CBTfrom Whatis-Extensions

Generic Computer based training file

.CCfrom Whatis-Extensions

C++ Source code

.CCfrom Whatis-Extensions

Visual dBASE custom class file

.cc, .cxx, .C, .cppfrom Rute-Users-Guide

C++ program source code.

.CCAfrom Whatis-Extensions

cc:mail archive file

.CCB

Visual Basic Animated Button configuration file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CCCfrom Whatis-Extensions

Curtain Call Native bitmap graphic

.CCEfrom Whatis-Extensions

Data file (Calendar Creator Plus)

.CCF

Multimedia Viewer configuration file used in OS/2 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CCF

Symphony Communications Configuration file From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.CCHfrom Whatis-Extensions

Corel Chart

.CCLfrom Whatis-Extensions

Intalk Communication Command Language

.CCM

Lotus CC:Mail "box" file (for example, INBOX.CCM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CCOfrom Whatis-Extensions

CyberChat data file

.CCOfrom Whatis-Extensions

XBTX Graphics

.CCTfrom Whatis-Extensions

Macromedia Director Shockwave cast file

.CDAfrom Whatis-Extensions

CD Audio Track

.CDBfrom Whatis-Extensions

CardScan Database (CardScan)

.CDBfrom Whatis-Extensions

Clipboard file

.CDB

Conceptual model backup file (PowerDesigner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CDBfrom Whatis-Extensions

TCU Turbo C Utilities Main database

.CDFfrom Whatis-Extensions

<http://searchWebServices.techtarget.com/sDefinition/ 0,,sid26_gci213841,00.html> Microsoft Channel Definition Format

.CDFfrom Whatis-Extensions

Netcdf Graphic file

.CDFSfrom Whatis-Extensions

Compact Disk filing system (WindRiver)

.CDIfrom Whatis-Extensions

Phillips Compact Disk Interactive file

.CDKfrom Whatis-Extensions

Atari Calamus Document

.CDMfrom Whatis-Extensions

Conceptual data model file (PowerDesigner Data Architect) (Sybase)

.CDMfrom Whatis-Extensions

Conceptual model file (PowerDesigner)

.CDMfrom Whatis-Extensions

Visual dBASE custom data module

.CDRfrom Whatis-Extensions

Corel Draw Vector drawing file

.CDRfrom Whatis-Extensions

Raw Audio-CD data file

.CDTfrom Whatis-Extensions

Corel Draw template

.CDTfrom Whatis-Extensions

CorelDraw Data file

.CDXfrom Whatis-Extensions

Corel Draw compressed drawing

.CDX

Microsoft's Visual Foxpro <http://searchDatabase.techtarget.com/ sDefinition/0,,sid13_gci213705,00.html> index From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CE

The FarSide Computer Calendar Main CE file From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.CEGfrom Whatis-Extensions

Tempra Show Bitmap graphic

.CELfrom Whatis-Extensions

AutoDesk Animator Cel Image

.CELfrom Whatis-Extensions

CIMFast Event Language file

.CERfrom Whatis-Extensions

Certificate file (MIME x-x509-ca-cert)

.CFfrom Whatis-Extensions

Imake Configurtion file

.cf, .cfgfrom Rute-Users-Guide

Configuration file or script.

.CFBfrom Whatis-Extensions

Comptons Multimedia file

.CFGfrom Whatis-Extensions

Configuration file

.CFLfrom Whatis-Extensions

CorelFLOW Chart

.CFMfrom Whatis-Extensions

ColdFusion <http://searchDatabase.techtarget.com/sDefinition/ 0,,sid13_gci211812,00.html> template

.CFMfrom Whatis-Extensions

Corel FontMaster file

.CFMfrom Whatis-Extensions

Creative FM-Music

.CFMfrom Whatis-Extensions

Visual dBASE Windows customer form

.CFNfrom Whatis-Extensions

Atari Calamus Font data file

.CFOfrom Whatis-Extensions

TCU Turbo C Utilities C form object

.CFPfrom Whatis-Extensions

The Complete Fax Portable fax file

.CGAfrom Whatis-Extensions

Ventura Publisher Display font file

.CGIfrom Whatis-Extensions

<http://searchDatabase.techtarget.com/sDefinition/ 0,,sid13_gci213846,00.html> Common gateway interface script

.cgi

Executable script that produces web page output. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CGMfrom Whatis-Extensions

Computer Graphic Metafile

.CHfrom Whatis-Extensions

Clipper 5 Header

.CHfrom Whatis-Extensions

OS/2 configuration file

.CH3from Whatis-Extensions

Harvard Graphics 3.0 Chart

.CH4from Whatis-Extensions

Charisma 4.0 Presentation

.CHDfrom Whatis-Extensions

FontChameleon Font descriptor

.CHFfrom Whatis-Extensions

pcAnywhere remote control file

.CHIfrom Whatis-Extensions

ChiWriter Document

.CHKfrom Whatis-Extensions

File fragments saved by Windows Disk Defragmenter or ScanDisk

.CHKfrom Whatis-Extensions

WordPerfect for Windows Temporary file

.CHLfrom Whatis-Extensions

Configuration History Log

.CHMfrom Whatis-Extensions

Compiled HTML file

.CHNfrom Whatis-Extensions

Ethnograph Data file

.CHPfrom Whatis-Extensions

Ventura Publisher Chapter file

.CHRfrom Whatis-Extensions

Character Sets (Font file)

.CHTfrom Whatis-Extensions

ChartMaster dBase Interface file

.CHTfrom Whatis-Extensions

ChartViewer file

.CHTfrom Whatis-Extensions

Harvard Graphics Vector <http://WhatIs.techtarget.com/definition/ 0,,sid9_gci528553,00.html> file

.CIFfrom Whatis-Extensions

CalTech Intermediate Graphic

.CIFfrom Whatis-Extensions

Easy CD Creator image

.CIFfrom Whatis-Extensions

pcAnywhere caller file

.CILfrom Whatis-Extensions

Clip Gallery download package file

.CIMfrom Whatis-Extensions

Sim City 2000 file

.CINfrom Whatis-Extensions

OS/2 change control file that tracks changes to an INI file

.CIXfrom Whatis-Extensions

TCU Turbo C Utilities Database Index

.CK1from Whatis-Extensions

iD/Apogee Commander Keen 1 data

.CK2from Whatis-Extensions

iD/Apogee Commander Keen 2 data

.CK3from Whatis-Extensions

iD/Apogee Commander Keen 3 data

.CK4from Whatis-Extensions

iD/Apogee Commander Keen 4 data

.CK5from Whatis-Extensions

iD/Apogee Commander Keen 5 data

.CK6from Whatis-Extensions

iD/Apogee Commander Keen 6 data

.CKBfrom Whatis-Extensions

Borland C++ Keyboard mapping file

.CLfrom Whatis-Extensions

Generic LISP Source code

.CL3from Whatis-Extensions

Layout file (Adaptec Easy CD Creator)

.CLASSfrom Whatis-Extensions

Java class

.CLGfrom Whatis-Extensions

Disk Catalog database

.CLLfrom Whatis-Extensions

Cricket Software Clicker File

.CLOfrom Whatis-Extensions

Cloe Image

.CLPfrom Whatis-Extensions

Clipper 5 Compiler Script

.CLPfrom Whatis-Extensions

Quattro Pro Clip art

.CLPfrom Whatis-Extensions

Windows Clipboard

.CLRfrom Whatis-Extensions

1st Reader Binary color screen image

.CLRfrom Whatis-Extensions

PhotStyler Color defintion

.CLSfrom Whatis-Extensions

C++ Class Definition

.CLSfrom Whatis-Extensions

Visual Basic Class Module

.CMfrom Whatis-Extensions

Craftman Data

.CMA

Database file in plain text format (APPLIX TM1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CMDfrom Whatis-Extensions

1st Reader External Command Menu

.CMDfrom Whatis-Extensions

Command file for Windows NT (similar to a DOS .BAT file), OS/2

.CMDfrom Whatis-Extensions

dBase-II program file

.CMDfrom Whatis-Extensions

DOS CP/M command file

.CMFfrom Whatis-Extensions

Corel Metafile

.CMGfrom Whatis-Extensions

Chessmaster saved game

.CMKfrom Whatis-Extensions

Card Shop Plus file

.CMMfrom Whatis-Extensions

CEnvi Batch file

.CMPfrom Whatis-Extensions

Address document

.CMPfrom Whatis-Extensions

CorelDRAW 4.0 Postscript Printer Header

.CMPfrom Whatis-Extensions

JPEG <http://searchWebServices.techtarget.com/sDefinition/ 0,,sid26_gci212425,00.html> Bitmap

.CMPfrom Whatis-Extensions

Microsoft Word for DOS User dictionary

.CMPfrom Whatis-Extensions

Route 66 Address Document

.CMRfrom Whatis-Extensions

MediaPlayer Movie

.CMVfrom Whatis-Extensions

Corel Move animation

.CMXfrom Whatis-Extensions

Corel Presentation Exchange image

.CMYK

Raw cyan, magenta, yellow, and black bytes file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CNCfrom Whatis-Extensions

CNC General Program data

.CNFfrom Whatis-Extensions

Configuration file used by Telnet, Windows, and other applications with varying internal formats

.CNM

Windows application menu options and setup file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CNQfrom Whatis-Extensions

Compuworks Design Shop file

.CNTfrom Whatis-Extensions

Windows (or other) system content files for the help index and other purposes

.CNVfrom Whatis-Extensions

Conversion files (WS_FTP Pro) files that will be converted from (Example) "HTML-"HTM" for upload

.CNV

Word for Windows Data conversion support file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CNVfrom Whatis-Extensions

WordPerfect for Windows Temporary file

.COBfrom Whatis-Extensions

COBOL Source code

.COBfrom Whatis-Extensions

trueSpace 2 object

.COD

dBase Application Generator Template source file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CODfrom Whatis-Extensions

FORTRAN Compiled code

.CODfrom Whatis-Extensions

Microsoft C compiler output as displayable machine language/assembler with original C as comments

.CODfrom Whatis-Extensions

Video Text file

.COLfrom Whatis-Extensions

AutoDesk Animator Color Palette

.COLfrom Whatis-Extensions

Microsoft Multiplan Spreadsheet

.COMfrom Whatis-Extensions

Command file (program)

.Compilerfrom Whatis-Extensions

attempts to compile the source files of a Help system

.CONfrom Whatis-Extensions

Simdir Configuration file

.conf, .configfrom Rute-Users-Guide

Configuration file.

.CP8from Whatis-Extensions

CP8 256 Gray Scale image

.CPDfrom Whatis-Extensions

Complaints Desk Script

.CPDfrom Whatis-Extensions

Corel PrintOffice file (drawing)

.CPDfrom Whatis-Extensions

Fax Cover document

.CPEfrom Whatis-Extensions

Fax Cover document

.CPFfrom Whatis-Extensions

The Complete Fax (Fax file)

.CPHfrom Whatis-Extensions

Image file (Corel Print House) see CPO

.CPIfrom Whatis-Extensions

ColorLab Processed Image bitmap

.CPIfrom Whatis-Extensions

Microsoft MS-DOS code page information

.CPJfrom Whatis-Extensions

CeQuadrant CD Project

.CPLfrom Whatis-Extensions

Compel Presentation

.CPLfrom Whatis-Extensions

Control Panel Module

.CPLfrom Whatis-Extensions

Corel color palette

.CPOfrom Whatis-Extensions

Image file (Corel Print Office)

.CPPfrom Whatis-Extensions

C++ Source code

.CPPfrom Whatis-Extensions

CA-Cricket Presents presentation

.CPRfrom Whatis-Extensions

Corel Presents presentation

.CPSfrom Whatis-Extensions

Central Point PC Tools Backup

.CPSfrom Whatis-Extensions

Coloured postscript

.CPTfrom Whatis-Extensions

CA-Cricket Presents Template

.CPTfrom Whatis-Extensions

Corel Photo-Paint image

.CPTfrom Whatis-Extensions

dBase Encrypted Memo

.CPTfrom Whatis-Extensions

Macintosh Compressed Archive

.CPX

Corel Presentation Exchange compressed drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPYfrom Whatis-Extensions

Data file (Copy Books)

.CPZfrom Whatis-Extensions

COMPOZ Music Text

.CRC

Check file (Win-SFV32) (Fantasia Software) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.CRCfrom Whatis-Extensions

Circular reference file (Pro/Engineer)

.CRDfrom Whatis-Extensions

Microsoft Windows 3.x Cardfile

.CRFfrom Whatis-Extensions

Zortech C++ cross-reference

.CRHfrom Whatis-Extensions

Image file (Microsoft Golf)

.CRPfrom Whatis-Extensions

Corel Presents run-time presentation

.CRPfrom Whatis-Extensions

dBase IV Encrypted database

.CRPfrom Whatis-Extensions

Visual dBASE custom report

.CRSfrom Whatis-Extensions

WordPerfect 5.1 for Windows File Conversion resource

.CRTfrom Whatis-Extensions

Certificate file

.CRTfrom Whatis-Extensions

Crontab file)

.CRTfrom Whatis-Extensions

Oracle Terminal settings information

.CRUfrom Whatis-Extensions

CRUSH Compressed archive

.CSAfrom Whatis-Extensions

Comma deliminated text

.CSCfrom Whatis-Extensions

Corel script

.CSGfrom Whatis-Extensions

Statistica/w Graph file

.CSHfrom Whatis-Extensions

C shell script files (Hamilton Labs)

.cshfrom Rute-Users-Guide

csh shell script.

.CSMfrom Whatis-Extensions

Borland C++ 4.5 Precompiled header

.CSMfrom Whatis-Extensions

Script file (Kodak Dc265 Camera)

.CSOfrom Whatis-Extensions

Customer service data and outcome file

.CSPfrom Whatis-Extensions

PC Emcee On-Screen image

.CSSfrom Whatis-Extensions

<http://searchWebServices.techtarget.com/sDefinition/ 0,,sid26_gci211749,00.html> Cascading Style Sheet (MIME)

.CSSfrom Whatis-Extensions

Statistica/w Datasheet

.CSSfrom Whatis-Extensions

Stats+ Datafile

.CST

Macromedia Director "Cast" (resource) file From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.CSVfrom Whatis-Extensions

Comma-separated values file

.CSVfrom Whatis-Extensions

CompuShow Adjusted EGA/VGA Palette

.CTfrom Whatis-Extensions

A graphic file associated with the Paint Shop Pro Graphic Editor

.CTfrom Whatis-Extensions

Scitex CT bitmap

.CTCfrom Whatis-Extensions

PC Installer Control

.CTFfrom Whatis-Extensions

Symphony Character code translation

.CTLfrom Whatis-Extensions

dBase IV Control

.CTLfrom Whatis-Extensions

Used in general for files containing control information. FAXWorks uses it to keep information about each fax sent and received.

.CTXfrom Whatis-Extensions

Microsoft Online Course Text

.CTX

Pretty Good Privacy (PGP) Ciphertext file From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.CTXfrom Whatis-Extensions

Visual Basic User control binary file

.CUEfrom Whatis-Extensions

Microsoft Cue Cards data

.CULfrom Whatis-Extensions

Cursor library file (IconForge)

.CURfrom Whatis-Extensions

Windows Cursor

.CURSORfrom Whatis-Extensions

Sun Microsystems Cursor

.CUTfrom Whatis-Extensions

Dr Halo Bitmap

.CVfrom Whatis-Extensions

Corel Versions archive

.CVfrom Whatis-Extensions

Microsoft CodeView information screen

.CVGfrom Whatis-Extensions

Image

.CVSfrom Whatis-Extensions

Canvas drawing file

.CWKfrom Whatis-Extensions

Claris Works data

.CWSfrom Whatis-Extensions

Claris Works template

.CXTfrom Whatis-Extensions

Macromedia Director protected (not editable) "Cast" (resource) file

.CXXfrom Whatis-Extensions

C++ source code

.D2Dfrom Whatis-Extensions

2D/3D object file (3-D Fassade Plus)

.D64from Whatis-Extensions

Commodore 64 emulator disk image

.DAOfrom Whatis-Extensions

Windows Registry Backup

.DAPfrom Whatis-Extensions

Data access page (Microsoft Access 2000)

.DATfrom Whatis-Extensions

A data file extension used to designate an error message in a

.DATfrom Whatis-Extensions

Data file

.DATfrom Whatis-Extensions

Extension used for some MPEG <http://WhatIs.techtarget.com/definition/ 0,,sid9_gci212601,00.html> files

.DATfrom Whatis-Extensions

WordPerfect Merge Data

.DBfrom Whatis-Extensions

Borderland's Paradox 7 table database

.dbfrom Rute-Users-Guide

Database file.

.DBCfrom Whatis-Extensions

Microsoft's Visual FoxPro <http://searchDatabase.techtarget.com/ sDefinition/0,,sid13_gci213705,00.html> database container file

.DBFfrom Whatis-Extensions

A dBASE file, a format originated by Ashton-Tate, but understood by Act!, Clipper,FoxPro, Arago, Wordtech, xBase, and similar database or database-related products.

.DBF

Enable database (can be opened with Excel 97) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DBFfrom Whatis-Extensions

Oracle 8.1.x tablespace file

.DBKfrom Whatis-Extensions

dBase Database Backup

.DBK

Schematic backup file (Orcad Schematic Capture) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DBOfrom Whatis-Extensions

Compiled program file (dBase IV)

.DBQfrom Whatis-Extensions

Paradox Memo

.DBTfrom Whatis-Extensions

dBase Text Memo

.DBVfrom Whatis-Extensions

Memo field file (Flexfile 2)

.DBW

Microsoft Windows 9.x Database file (DataBoss) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DBXfrom Whatis-Extensions

DataBeam image

.DBX

Microsoft's Visual FoxPro <http://searchDatabase.techtarget.com/ sDefinition/0,,sid13_gci213705,00.html> Table file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DCfrom Whatis-Extensions

CAD file (DesignCAD)

.DC2from Whatis-Extensions

CAD file (DesignCAD)

.DC5from Whatis-Extensions

DataCAD Drawing

.DCAfrom Whatis-Extensions

Document Content Architecture Text file (IBM DisplayWrite)

.DCAfrom Whatis-Extensions

Visual Basic Active designer cache

.DCFfrom Whatis-Extensions

Data file (Dyadic)

.DCFfrom Whatis-Extensions

Disk Image file

.DCIMfrom Whatis-Extensions

Digital Imaging and Communications in Medicine (image and data)

.DCMfrom Whatis-Extensions

DCM module

.DCPfrom Whatis-Extensions

Data CodePage (OS/2)

.DCRfrom Whatis-Extensions

Shockwave file

.DCSfrom Whatis-Extensions

Bitmap Graphics (Quark XPress)

.DCSfrom Whatis-Extensions

Datafile (ACT! Activity file)

.DCSfrom Whatis-Extensions

Desktop Color Separation file

.DCTfrom Whatis-Extensions

Database Dictionary file (Clarion Database Developer)

.DCTfrom Whatis-Extensions

Database SpellCheck Dictionary (Harvard Graphics 3.0-Symphony)

.DCTfrom Whatis-Extensions

Microsoft's Visual FoxPro <http://searchDatabase.techtarget.com/ sDefinition/0,,sid13_gci213705,00.html> database container file

.DCUfrom Whatis-Extensions

Delphi compiled unit

.DCXfrom Whatis-Extensions

Bitmap Graphics file (Multipage PCX)

.DCXfrom Whatis-Extensions

Fax image (based on PCX)

.DCXfrom Whatis-Extensions

Macro file

.DCXfrom Whatis-Extensions

Microsoft's Visual FoxPro <http://searchDatabase.techtarget.com/ sDefinition/0,,sid13_gci213705,00.html> database container file

.DD

Compressed Archive (Macintosh DISKDOUBLER) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.DDBfrom Whatis-Extensions

Bitmap Graphics file

.DDFfrom Whatis-Extensions

Btrieve or Xtrieve Data Definition File, which contains metadata <http:/ /searchDatabase.techtarget.com/sDefinition/0,,sid13_gci212555,00.html> describing a Btrieve or Xtrieve file

.DDIfrom Whatis-Extensions

Image File (DISKDUPE)

.DDIFfrom Whatis-Extensions

Digital Equipment or Compaq file. Used for storing images and their

.DDPfrom Whatis-Extensions

Device Driver Profile (OS/2)

.deb

Debian package for the Debian distribution. From Rute-Users-Guide [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.DEBfrom Whatis-Extensions

Debug Script (DOS Debug)

.DEFfrom Whatis-Extensions

Assembly Header file (Geoworks)

.DEFfrom Whatis-Extensions

C++ definition file

.DEFfrom Whatis-Extensions

Define Module file (3-D Fassade Plus)

.DEFfrom Whatis-Extensions

SmartWare II data

.DEFIfrom Whatis-Extensions

Oracle 7 de-install script

.DEMfrom Whatis-Extensions

A file with USGS standards for Digital Elevation Models (Vista Pro)

.DEMfrom Whatis-Extensions

Demo file (Descent)

.DEMfrom Whatis-Extensions

Graphics file (Vista Pro)

.DEP

Visual Basic Setup Wizard Dependency file From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.DERfrom Whatis-Extensions

Certificate file

.DEVfrom Whatis-Extensions

Device Driver

.DEWFfrom Whatis-Extensions

Macintosh SoundCap/SoundEdit recorded instrument file

.DEZfrom Whatis-Extensions

Encrypted zip file (DES Encryption)

.DFDfrom Whatis-Extensions

Data Flow Diagram Graphic (Prosa)

.DFIfrom Whatis-Extensions

Outline Font description (Digifont)

.DFLfrom Whatis-Extensions

Default Program Settings (Signature)

.DFMfrom Whatis-Extensions

Data Flow Diagram model (Prosa)

.DFSfrom Whatis-Extensions

Sound File (Delight)

.DFVfrom Whatis-Extensions

Printing Form value (Microsoft Word)

.DGNfrom Whatis-Extensions

Microstation95 CAD drawing

.DGSfrom Whatis-Extensions

Diagnostics Report

.DHfrom Whatis-Extensions

Dependency Information file (Geoworks)

.DHP

Graphic file (Dr. Halo II-III PIC Format) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.DHTfrom Whatis-Extensions

Datafile (Gauss)

.DIAfrom Whatis-Extensions

Diagraph Graphics file (Computer Support Corporation)

.DIBfrom Whatis-Extensions

Device-independent bitmap

.DICfrom Whatis-Extensions

Dictionary file (Lotus Notes, Domino)

.DICfrom Whatis-Extensions

Dictionary file

.DICMfrom Whatis-Extensions

Digital imaging and communications in medicine file (DICOM)

.DIFfrom Whatis-Extensions

Data Interchange Format spreadsheet

.DIFfrom Whatis-Extensions

Data Interchange Output file

.DIFfrom Whatis-Extensions

Database file (VisiCalc)

.DIF

Text file (Output from Data Interchange Format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.difffrom Rute-Users-Guide

Output of the diff program indicating the difference between files or source trees.

.DIGfrom Whatis-Extensions

Digilink file

.DIGfrom Whatis-Extensions

Sound Designer I audio

.DIPfrom Whatis-Extensions

Graphics file

.DIRfrom Whatis-Extensions

Dialing Directory (ProComm Plus)

.DIRfrom Whatis-Extensions

Directory (VAX) (DEC)

.DIRfrom Whatis-Extensions

Macromedia Director file

.DIRfrom Whatis-Extensions

Movie (MacroMind Director 4.x)

.dir

X Window System font/other database directory. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DISfrom Whatis-Extensions

Distribution file (VAX Mail)

.DISfrom Whatis-Extensions

Ray Tracer file

.DISfrom Whatis-Extensions

Thesaurus file (CorelDraw)

.DIZfrom Whatis-Extensions

Description file (Description in ZIP)

.DKBfrom Whatis-Extensions

Graphics file (Ray Traced DKBTrace)

.DLfrom Whatis-Extensions

Image

.DLDfrom Whatis-Extensions

Datafile (Lotus 1-2-3)

.DLGfrom Whatis-Extensions

C++ Dialogue Script

.DLLfrom Whatis-Extensions

<http://searchWin2000.techtarget.com/sDefinition/ 0,,sid1_gci213902,00.html> Dynamic-link library file

.DLLfrom Whatis-Extensions

Export/Import Filter (CorelDraw)

.DLSfrom Whatis-Extensions

Downloadable sound

.DLSfrom Whatis-Extensions

Interactive music architecture (IMA)(Microsoft),(Blood2)

.DLSfrom Whatis-Extensions

Setup file (Norton DiskLock)

.DMDfrom Whatis-Extensions

Visual dBASE data module

.DMFfrom Whatis-Extensions

Packed Amiga disk image

.DMFfrom Whatis-Extensions

X-Trakker music module (MOD)

.DMOfrom Whatis-Extensions

Demo file (Derive)

.DMPfrom Whatis-Extensions

Dump file (Screen or Memory)

.DMSfrom Whatis-Extensions

Compressed Archive (Amiga DISKMASHER)

.DOBfrom Whatis-Extensions

Visual Basic User document

.DOCfrom Whatis-Extensions

DisplayWrite document

.DOCfrom Whatis-Extensions

Document format (Interleaf)

.DOCfrom Whatis-Extensions

FrameMaker or FrameBuilder document

.DOCfrom Whatis-Extensions

Microsoft Word document

.DOCfrom Whatis-Extensions

WordPerfect document

.DOCfrom Whatis-Extensions

WordStar document

.DOG

Screen Saver file (Laughing Dog Screen Saver) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DOHfrom Whatis-Extensions

Dependency Information file (Geoworks)

.DOSfrom Whatis-Extensions

External Command file (1st Reader)

.DOSfrom Whatis-Extensions

Network Driver file (PKT_DIS.dos)

.DOSfrom Whatis-Extensions

Text file (DOS)

.DOTfrom Whatis-Extensions

Line-Type definition (CorelDraw)

.DOTfrom Whatis-Extensions

Word Document Template (Microsoft Word for Windows)

.DOXfrom Whatis-Extensions

Text file (MultiMate 4.x)

.DOXfrom Whatis-Extensions

User document binary form (Visual Basic)

.DOZfrom Whatis-Extensions

Description out of Zip (VENDINFO)

.DPfrom Whatis-Extensions

Calendar file (Daily Planner)

.DPfrom Whatis-Extensions

Datafile (DataPhile)

.DPLfrom Whatis-Extensions

Borland Delphi 3 packed library

.DPRfrom Whatis-Extensions

Project header (Borland C++)

.DPTfrom Whatis-Extensions

Publication file (Publish-It!)

.DR9from Whatis-Extensions

Directory file

.DRAWfrom Whatis-Extensions

Acorn's object-based vector image

.DRCfrom Whatis-Extensions

Design rules check report file (Orcad Schematic Capture)

.DRS

Display Resource file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DRVfrom Whatis-Extensions

Device Driver (Required to make a device function)

.DRVfrom Whatis-Extensions

Driver <http://searchStorage.techtarget.com/sDefinition/ 0,,sid5_gci212002,00.html>

.DRWfrom Whatis-Extensions

Lotus Freelance Image

.DRWfrom Whatis-Extensions

Pro/E drawing

.DRWfrom Whatis-Extensions

Vector graphics (Micrografx)

.DS4from Whatis-Extensions

Micrografx Designer Image

.DS4from Whatis-Extensions

Vector Graphics (Micrografx)

.DSCfrom Whatis-Extensions

Discard file (Oracle)

.DSDfrom Whatis-Extensions

Database file (DataShaper)

.DSFfrom Whatis-Extensions

Micrografx Designer v7.x file

.DSGfrom Whatis-Extensions

DooM saved game

.DSKfrom Whatis-Extensions

Driver file (Novell Netware)

.DSK

Project Desktop file (Borland C++/Turbo Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSMfrom Whatis-Extensions

Digital Sound Module (DSI)

.DSMfrom Whatis-Extensions

Dynamic Studio music module (MOD)

.DSMfrom Whatis-Extensions

Music module file (DSIK)

.DSNfrom Whatis-Extensions

Design (Object System Designer)

.DSNfrom Whatis-Extensions

ODBC Data source

.DSNfrom Whatis-Extensions

Schematic file (Orcad Schematic Capture)

.DSPfrom Whatis-Extensions

Display parameters (Signature)

.DSPfrom Whatis-Extensions

Graphics Display driver (Dr. Halo)

.DSPfrom Whatis-Extensions

Microsoft Developer Studio project

.DSQfrom Whatis-Extensions

Corel QUERY

.DSR

Driver Resource (WordPerfect for Windows) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.DSRfrom Whatis-Extensions

Visual Basic Active designer file

.DSSfrom Whatis-Extensions

Digital Sound file (Digital Soup))

.DSSfrom Whatis-Extensions

Screensaver file (DCC)

.DSTfrom Whatis-Extensions

Distribution file (PC-RDist, by Pyzzo)

.DSTfrom Whatis-Extensions

Embroidery machines graphic file

.DSWfrom Whatis-Extensions

Desktop settings (Borland C++ 4.5)

.DSW

Microsoft Developer Studio workspace file From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.DSXfrom Whatis-Extensions

Visual Basic Active designer binary file

.DTAfrom Whatis-Extensions

Datafile (Turbo C++)

.DTAfrom Whatis-Extensions

World Bank's STARS data

.DTDfrom Whatis-Extensions

<http://searchWebServices.techtarget.com/sDefinition/ 0,,sid26_gci213918,00.html> SGML Document Type Definition (DTD <http:// searchWebServices.techtarget.com/sDefinition/0,,sid26_gci213918,00.html>) file

.DTEDfrom Whatis-Extensions

Digital terrain elevation data (geographic data format)

.DTFfrom Whatis-Extensions

Database file (PFS-Questions & Answers)

.DTFfrom Whatis-Extensions

Symantec Q&A relational database

.DTMfrom Whatis-Extensions

Module file (DigiTrakker)

.DTP

Desktop layout file (SecurDesk!/SecurDesk! LV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DTPfrom Whatis-Extensions

Template file (Pressworks)

.DTPfrom Whatis-Extensions

Text Document (Timeworks Publisher 3.x)

.DT_from Whatis-Extensions

Data file fork (Macintosh)

.DUNfrom Whatis-Extensions

Microsoft Dial-up Networking Export file

.DUPfrom Whatis-Extensions

Duplicate Backup

.DVfrom Whatis-Extensions

Digital video (MIME)

.DVCfrom Whatis-Extensions

Datafile (Lotus 1-2-3)

.DVFfrom Whatis-Extensions

Graphics file associated with camcorders (DV Studio)

.DVIfrom Whatis-Extensions

Binary file (TeX)

.DVI

Device Independent Document (TeX) (LaTeX) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.dvifrom Rute-Users-Guide

Device-independent file. Formatted output of .tex LATEX file.

.DVPfrom Whatis-Extensions

Desqview Program information (DESQview)

.DVPfrom Whatis-Extensions

Device parameter file (AutoCAD)

.DW2from Whatis-Extensions

Drawing file (DesignCAD for Windows)

.DWCfrom Whatis-Extensions

Compressed Archive (DWC)

.DWDfrom Whatis-Extensions

DiamondWare digitized file

.DWF

Drawing Web file (Microsoft WHIP autoCAD reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DWFfrom Whatis-Extensions

Vector graphic (Autodesk)

.DWGfrom Whatis-Extensions

AutoCAD Drawing

.DWGfrom Whatis-Extensions

AutoCAD drawing, or older Generic CAD drawing file

.DWPfrom Whatis-Extensions

Document file (DeScribe)

.DWSfrom Whatis-Extensions

Workspace file (Dyadic)

.DXfrom Whatis-Extensions

Digital Electric Corporation (DEC) Data exchange file

.DXFfrom Whatis-Extensions

Data Exchange File

.DXFfrom Whatis-Extensions

Drawing Interchange (eXchange) format,a text representation of the binary DWG format

.DXFfrom Whatis-Extensions

Drawing Interchange Format (AutoCAD)

.DXNfrom Whatis-Extensions

Fax document (Fujitsu dexNet)

.DXRfrom Whatis-Extensions

Macromedia Director protected (not editable) movie file

.DYNfrom Whatis-Extensions

Datafile (Lotus 1-2-3)

.E00from Whatis-Extensions

Coverage export file (ArcInfo)

.e00from Whatis-Extensions

Exchange file (Arc/Info)

.EBJfrom Whatis-Extensions

Error Checking Object file (Geoworks)

.ED5from Whatis-Extensions

EDMICS image

.ED6from Whatis-Extensions

EDMICS image

.EDAfrom Whatis-Extensions

Ensoniq ASR disk image

.EDBfrom Whatis-Extensions

ROOTS3 Geneological data file

.EDDfrom Whatis-Extensions

Element Definition document (FrameMaker+SGML documents)

.EDEfrom Whatis-Extensions

Ensoniq EPS disk image

.EDKfrom Whatis-Extensions

Ensoniq KT disk image

.EDQfrom Whatis-Extensions

Ensoniq SQ1/SQ2/KS32 disk image

.EDSfrom Whatis-Extensions

Ensoniq SQ80 disk image

.EDTfrom Whatis-Extensions

Default settings (VAX Edt editor)

.EDVfrom Whatis-Extensions

Ensoniq VFX-SD disk image

.EEBfrom Whatis-Extensions

Button Bar for Equation editor (WordPerfect for Windows)

.EFAfrom Whatis-Extensions

Ensoniq ASR file

.EFEfrom Whatis-Extensions

Ensoniq EPS file

.EFKfrom Whatis-Extensions

Ensoniq KT file

.EFQfrom Whatis-Extensions

Ensoniq SQ1/SQ2/KS32 file

.EFSfrom Whatis-Extensions

Ensoniq SQ80 file

.EFTfrom Whatis-Extensions

High Resolution Screen Font (ChiWriter)

.EFVfrom Whatis-Extensions

Ensoniq VFX-SD file

.EFXfrom Whatis-Extensions

Fax document (Efax Reader)

.EFXfrom Whatis-Extensions

Fax Document (Everex EFax)

.EGAfrom Whatis-Extensions

EGA Display font (Ventura Publisher)

.elfrom Rute-Users-Guide

Lisp program source.

.ELfrom Whatis-Extensions

Lisp Source code (eMacs)

.ELCfrom Whatis-Extensions

eMac Lisp Source code (byte-compiled)

.ELM

Theme-Pack file for (Microsoft FrontPage) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.ELTfrom Whatis-Extensions

Event List Text file (Prosa)

.EMBfrom Whatis-Extensions

Embedded bank File (Everest)

.EMDfrom Whatis-Extensions

ABT Extended MoDule

.EMFfrom Whatis-Extensions

Enhanced Windows Metafile

.EMLfrom Whatis-Extensions

Microsoft Outlook Express mail message (MIME RFC 822)

.EMSfrom Whatis-Extensions

Enhanced Menu System Configuration file (PC Tools)

.EMUfrom Whatis-Extensions

Terminal Emulation Data file (BITCOM)

.ENC

Encoded file (UUENCODEd File, Lotus 1-2-3) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.ENCfrom Whatis-Extensions

Music file (Encore)

.ENCfrom Whatis-Extensions

Video file

.ENDfrom Whatis-Extensions

Arrow-Head Definition Table (CorelDraw)

.ENFFfrom Whatis-Extensions

Neutral Format

.ENGfrom Whatis-Extensions

Chart Graphics file (EnerGraphics)

.ENGfrom Whatis-Extensions

Dictionary Engine file (Sprint)

.ENVfrom Whatis-Extensions

Enveloper Macro (WOPR)

.ENV

Environment file (WordPerfect for Windows) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.EPDfrom Whatis-Extensions

Publication file (Express Publisher)

.EPHTMLfrom Whatis-Extensions

Enhanced Perl-parsed HTML

.EPIfrom Whatis-Extensions

Document file (Express Publisher)

.EPSfrom Whatis-Extensions

Encapsulated Postscript image file

.EPSfrom Whatis-Extensions

Encapsulated Postscript Vector graphics (Adobe Illustrator)

.EPS

Printer font (Epson, Xerox, Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EPS2from Whatis-Extensions

Adobe Level II Encapsulated Postscript

.EPSFfrom Whatis-Extensions

Encapsulated PostScript

.EPSI

Adobe Encapsulated Postscript Interchange From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.EQNfrom Whatis-Extensions

Equation file (WordPerfect for Windows)

.ER1from Whatis-Extensions

ERWin file

.ERD

Entity Relationship Diagram graphic file (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ERM

Entity Relationship Diagram Model file (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ERR

Compilation error file (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ERRfrom Whatis-Extensions

Stores the error messages that result when the RoboHELP Help

.ERXfrom Whatis-Extensions

ERWin file

.ESHfrom Whatis-Extensions

Extended Shell Batch file (DOS)

.ESLfrom Whatis-Extensions

Distributable support library file (Microsoft Visual FoxPro)

.ESPSfrom Whatis-Extensions

ESPS audio file

.ETHfrom Whatis-Extensions

Document file (Ethnograph 3.x)

.ETXfrom Whatis-Extensions

Structure Enhanced text (SetText)

.EUIfrom Whatis-Extensions

Ensoniq ESP family compacted disk image

.EVTfrom Whatis-Extensions

Event Log (Microsoft Windows NT, 2000)

.EVYfrom Whatis-Extensions

Document (WordPerfect for Windows Envoy)

.EWD

Text Document (Express Publisher for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EWLfrom Whatis-Extensions

Microsoft Encarta document

.EX3

Device Driver file (Harvard Graphics 3.x) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.EXC

Exclude file for Optimize (do not process, QEMM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EXCfrom Whatis-Extensions

Microsoft Word Exclusion Dictionary file

.EXCfrom Whatis-Extensions

Source Code file (Rexx VM/CMS)

.EXEfrom Whatis-Extensions

Executable <http://WhatIs.techtarget.com/definition/ 0,,sid9_gci212086,00.html> file (program)

.EXPfrom Whatis-Extensions

Saved chat (ICQ)

.EXTfrom Whatis-Extensions

ASCII binary transfer file (WS_FTP PRO) (IPSWITCH Software)

.EXT2from Whatis-Extensions

Second extended file system (Linux)

.EXT3from Whatis-Extensions

Third extended file system (Linux)

.EZPfrom Whatis-Extensions

Compressed file (Edify.zip) (Edify Electronic Workforce Backup Utility)

.Ffrom Whatis-Extensions

Compressed file archive (FREEZE)

.Ffrom Whatis-Extensions

FORTRAN file

.F01from Whatis-Extensions

Fax document (Perfect Fax)

.F06from Whatis-Extensions

Dos screen text font (height= 6 pixels)

.F07from Whatis-Extensions

Dos screen text font (height= 7 pixels)

.F08from Whatis-Extensions

Dos screen text font (height= 8 pixels)

.F09from Whatis-Extensions

Dos screen text font (height= 9 pixels)

.F10from Whatis-Extensions

Dos screen text font (height= 10 pixels)

.F11from Whatis-Extensions

Dos screen text font (height= 11 pixels)

.F12from Whatis-Extensions

Dos screen text font (height= 12 pixels)

.F13from Whatis-Extensions

Dos screen text font (height= 13 pixels)

.F14from Whatis-Extensions

Dos screen text font (height= 14 pixels)

.F15from Whatis-Extensions

Dos screen text font (height= 15 pixels)

.F16from Whatis-Extensions

Dos screen text font (height= 16 pixels)

.F2Rfrom Whatis-Extensions

Linear music module (Farandole)

.F3Rfrom Whatis-Extensions

Blocked music module (Farandole)

.F77from Whatis-Extensions

Source code file (FORTRAN 77)

.F90from Whatis-Extensions

FORTRAN file

.F96from Whatis-Extensions

Fax document (Frecom FAX96)

.FACfrom Whatis-Extensions

Face graphic

.FAQfrom Whatis-Extensions

Frequently Asked Questions document

.FARfrom Whatis-Extensions

Music module (MOD) (Farandole Composer)

.FASfrom Whatis-Extensions

Basic module file (3-D Fassade Plus)

.FAVfrom Whatis-Extensions

Navigation bar (Microsoft Outlook)

.FAXfrom Whatis-Extensions

<http://searchNetworking.techtarget.com/sDefinition/ 0,,sid7_gci212098,00.html>

.FAXfrom Whatis-Extensions

Type image

.FBKfrom Whatis-Extensions

Backup (Navison Financials)

.FC

Spell Check dictionary file (Harvard Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FCDfrom Whatis-Extensions

Virtual CD-ROM file

.FCMfrom Whatis-Extensions

Binary file patch (Forward Compression)

.FDfrom Whatis-Extensions

Declaration file (FORTRAN)

.FDfrom Whatis-Extensions

Field offsets for compiler (DataFlex)

.FDBfrom Whatis-Extensions

Database (Navison Financials)

.FDFfrom Whatis-Extensions

Forms Document (Adobe Acrobat)

.FDWfrom Whatis-Extensions

Document form (F3 Design and Mapping)

.FEBfrom Whatis-Extensions

Button Bar for Figure Editor (WordPerfect for Windows)

.FEMfrom Whatis-Extensions

CADRE Finite Element Mesh

.FF

Outline Font description (AGFA CompuGraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FFAfrom Whatis-Extensions

MS find fast file

.FFFfrom Whatis-Extensions

Fax document (defFax)

.FFFfrom Whatis-Extensions

GUS PnP bank file

.FFLfrom Whatis-Extensions

Image file (PrintMaster Gold)

.FFLfrom Whatis-Extensions

MS fast find file

.FFOfrom Whatis-Extensions

MS fast find file

.FFTfrom Whatis-Extensions

Final Form Text (part of IBM's DCA)

.FFXfrom Whatis-Extensions

MS fast find file

.FH3

Aldus Freehand 3 drawing (Vector graphic) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.FH4

Aldus Freehand 4 drawing (Vector graphic) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.FIfrom Whatis-Extensions

File Interface (FORTRAN)

.FIFfrom Whatis-Extensions

Fractal <http://WhatIs.techtarget.com/definition/ 0,,sid9_gci212149,00.html> Image

.FIGfrom Whatis-Extensions

REND386/AVRIL file

.FIL

File List Object (dBase Application Generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FILfrom Whatis-Extensions

File template (Application Generator)

.FILfrom Whatis-Extensions

Overlay (WordPerfect for Windows)

.FINfrom Whatis-Extensions

Print formatted text (Perfect Writer)

.FITfrom Whatis-Extensions

File index table (Microsoft Windows NT)

.FITfrom Whatis-Extensions

Graphic (FITS)

.FITSfrom Whatis-Extensions

CCD camera image

.FITSfrom Whatis-Extensions

Flexible Image Transport System file

.FIXfrom Whatis-Extensions

Patch file (Generic)

.FKYfrom Whatis-Extensions

Macro (Microsoft FoxPro)

.FLAfrom Whatis-Extensions

Movie (Macromedia Flash)

.FLBfrom Whatis-Extensions

Format library (Papyrus)

.FLCfrom Whatis-Extensions

FLIC animation (AutoDesk)

.FLD

Field define module file (3-D Fassade Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLDfrom Whatis-Extensions

File folder (Charisma)

.FLFfrom Whatis-Extensions

Delived form (Corel Paradox)

.FLFfrom Whatis-Extensions

Driver (OS/2)

.FLFfrom Whatis-Extensions

License (Navison Financials)

.FLIfrom Whatis-Extensions

FLIC animation (AutoDesk)

.FLIfrom Whatis-Extensions

Font library (EmTeX)

.FLLfrom Whatis-Extensions

Distributable dynamic link library (DLL) (Microsoft Visual FoxPro)

.FLMfrom Whatis-Extensions

Film Roll (AutoCAD)

.FLOfrom Whatis-Extensions

FlowCharter file (MicroGrafx)

.FLS

Filelist document (Farrukh Imposition Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLTfrom Whatis-Extensions

Filter (Corel)

.FLTfrom Whatis-Extensions

Filter (Micrografx Picture Publisher)

.FLTfrom Whatis-Extensions

Graphics filter (Microsoft)

.FLT

Graphics filter support file (Asymetrix ToolBook) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLTfrom Whatis-Extensions

Music module (MOD) (StarTrekker)

.FLTfrom Whatis-Extensions

Open Flight file (MulitGen)

.FLXfrom Whatis-Extensions

Compiled binary file (DataFlex)

.FMfrom Whatis-Extensions

FrameMaker Document (Adobe)

.FMfrom Whatis-Extensions

Spreadsheet (FileMaker Pro)

.FM1from Whatis-Extensions

Spreadsheet (Lotus 1-2-3, version 2.x)

.FM3

Device driver (Harvard Graphics, version 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FM3from Whatis-Extensions

Spreadsheet (Lotus 1-2-3, version 3.x)

.FMBfrom Whatis-Extensions

Binary source code for form, (Oracle, v4.x and later)

.FMB

File Manager button bar (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FMFfrom Whatis-Extensions

Font or Icon (IBM LinkWay)

.FMKfrom Whatis-Extensions

MakeFile (FORTRAN PowerStation)

.FMLfrom Whatis-Extensions

Mirror list (Oracle)

.FMOfrom Whatis-Extensions

Compiled format (dBase IV)

.FMPfrom Whatis-Extensions

Document file (FileMaker Pro)

.FMT

Csreen format file (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FMTfrom Whatis-Extensions

Print file (Microsoft Schedule+)

.FMTfrom Whatis-Extensions

Style sheet (Sprint)

.FMTfrom Whatis-Extensions

Text format for form file (Oracle, v4.x and later)

.FMXfrom Whatis-Extensions

Executable form, (Oracle,v4.x and later)

.FN3from Whatis-Extensions

Font (Harvard Graphics)

.FND

Saved Search (Find applet) (Microsoft Explorer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FNGfrom Whatis-Extensions

Font group (Font Navigator)

.FNKfrom Whatis-Extensions

Module (FunkTracker)

.FNTfrom Whatis-Extensions

Font (Generic)

.FNXfrom Whatis-Extensions

Inactive font (Exact)

.FO1from Whatis-Extensions

Font (Borland Turbo C)

.FO2from Whatis-Extensions

Font (Borland Turbo C)

.FOGfrom Whatis-Extensions

Fontographer font

.FOLfrom Whatis-Extensions

Saved message folder (1st Reader)

.FONfrom Whatis-Extensions

Call log (Procomm Plus)

.FONfrom Whatis-Extensions

Dialing directory (Telix)

.FONfrom Whatis-Extensions

Font (Generic)

.FONfrom Whatis-Extensions

System font (Generic)

.FORfrom Whatis-Extensions

Form (WindowBase)

.FORfrom Whatis-Extensions

FORTRAN source code

.forwardfrom Hacking-Lexicon

On UNIX, a user can place an e-mail address in his ".forward" file. This will cause all e-mail sent to his account to be forwarded to that e-mail address. This file a is prime target of attackers. If they can overwrite this file, they can subtly start capturing the user's e-mail. This is especially dangerous if the the account in question is the root account. Note that the user doesn't have to know any about this file or have one on his system. The mere creation of this file by the intruder will activate this feature. Furthermore, since this file starts with a 'dot', it is normally hidden from the user, so they won't even be ware that this feature exists.

.FOTfrom Whatis-Extensions

Font-related file (Generic)

.FOTfrom Whatis-Extensions

Installed TrueType font (Microsoft Windows Font Installer)

.FPfrom Whatis-Extensions

Configuration file (FoxPro)

.FPfrom Whatis-Extensions

FileMaker Pro file

.FP1from Whatis-Extensions

"Flying Pigs" screensaver datafile (Microsoft Windows 9.x)

.FP3from Whatis-Extensions

FileMaker Pro v.3 & 4 document file

.FP5from Whatis-Extensions

Document file (FileMaker Pro v.5)

.FPCfrom Whatis-Extensions

Catalog file (FoxPro)

.FPTfrom Whatis-Extensions

FileMaker Pro file

.FPTfrom Whatis-Extensions

Memo fields (Microsoft FoxPro)

.FPW

Floorplan drawing (FloorPlan Plus for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FPXfrom Whatis-Extensions

Bitmap (FlashPix)

.FR3from Whatis-Extensions

Renamed dBaseIII+ form (dBase IV)

.FRFfrom Whatis-Extensions

Font (FontMonger)

.FRGfrom Whatis-Extensions

Uncompiled report (dBase IV)

.FRKfrom Whatis-Extensions

Zip (compressed ) file (Macintosh)

.FRMfrom Whatis-Extensions

Document (FrameMaker or FrameBuilder)

.FRM

Executable file (Oracle,v3.0 and earlier) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.FRMfrom Whatis-Extensions

Form (Generic)

.FRMfrom Whatis-Extensions

Form (Visual Basic)

.FRMfrom Whatis-Extensions

Merge form (WordPerfect for Windows)

.FRMfrom Whatis-Extensions

Symbol Report (DataCAD)

.FROfrom Whatis-Extensions

Compiled report (dBase IV)

.FRPfrom Whatis-Extensions

Form (PerForm PRO Plus)

.FRS

Screen Font Resource (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FRTfrom Whatis-Extensions

Report menu (FoxPro)

.FRXfrom Whatis-Extensions

Form stash file (Visual Basic)

.FRXfrom Whatis-Extensions

Report (Microsoft FoxPro)

.FSFfrom Whatis-Extensions

fPrint Audit Tool

.FSLfrom Whatis-Extensions

Form (Paradox for Windows)

.FSLfrom Whatis-Extensions

Paradox 7 form (Borderland)

.FSLfrom Whatis-Extensions

Saved form (Corel Paradox)

.FSMfrom Whatis-Extensions

Sample file (Farandoyle)

.FSTfrom Whatis-Extensions

Linkable program (dBFast)

.FSXfrom Whatis-Extensions

Data (Lotus 1-2-3)

.FTfrom Whatis-Extensions

Full text index (Lotus Notes)

.FTBfrom Whatis-Extensions

Index file (Roots3)

.FTFfrom Whatis-Extensions

Client access data specification file (AS/400) (Client to Server)

.FTGfrom Whatis-Extensions

Help system full-text search group file (Microsoft Windows)

.FTMfrom Whatis-Extensions

Font (MicroGrafx)

.FTP

File transfer protocol (Internet Generic) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.FTS

Help system full-text search index (Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FTWfrom Whatis-Extensions

Document file (Family Tree Maker)

.FWfrom Whatis-Extensions

Database (Framework II)

.FW2from Whatis-Extensions

Database (Framework II)

.FW3from Whatis-Extensions

Database (Framework III)

.FW4from Whatis-Extensions

Database (Framework IV)

.FWBfrom Whatis-Extensions

Data file backup for file splitting configuration (FileWrangler)

.FWSfrom Whatis-Extensions

Data file for file splitting configuration (FileWrangler)

.FXfrom Whatis-Extensions

On-Line guide (FastLynx)

.FXDfrom Whatis-Extensions

Phonebook (FAXit)

.FXPfrom Whatis-Extensions

Compiled source code (FoxPro)

.FXSfrom Whatis-Extensions

Fax Transmit graphic (WinFax)

.FZBfrom Whatis-Extensions

Bank dump file (Casio FZ-1)

.FZFfrom Whatis-Extensions

Full dump file (Casio FZ-1)

.FZVfrom Whatis-Extensions

Voice dump file (Casio FZ-1)

.Gfrom Whatis-Extensions

Data chart (APPLAUSE)

.g3from Rute-Users-Guide

G3 fax format image file.

.G721from Whatis-Extensions

Raw CCITT G.721 //$bit ADPCM data

.G723from Whatis-Extensions

Raw CCITT G.723 3 or 5bit ADPCM data

.G8from Whatis-Extensions

Raw Graphics (one byte per pixel) Plane III (PicLab)

.GALfrom Whatis-Extensions

Album (Corel Multimedia Manager)

.GAMfrom Whatis-Extensions

Fax document (GammaFax)

.GB

Emulator ROM image file (Nintendo GameBoy) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.GBC

Color emulator ROM image file (Nintendo GameBoy) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GBLfrom Whatis-Extensions

Global definitions (VAXTPU Editor)

.GC1

Lisp source code (Golden Common Lisp 1.1) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.GC3

Lisp source code (Golden Common Lisp 1.1) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.GCD

Generic (TM) CADD drawing (later versions) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.GCP

Image processing file (Ground Control Point) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GDBfrom Whatis-Extensions

Database file (InterBase)

.GDFfrom Whatis-Extensions

Dictionary file (GEOS)

.GDMfrom Whatis-Extensions

Bells, whistles, and sound boards module

.GEDfrom Whatis-Extensions

Genealogical data (GEDCOM)

.GEDfrom Whatis-Extensions

Graphic Environment Document (drawing)

.GEDfrom Whatis-Extensions

Graphics editor file (EnerGraphics)

.GED

Graphics editor native format (Arts & Letters) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GEMfrom Whatis-Extensions

Metafile (GEM)

.GEMfrom Whatis-Extensions

Vector graphics (Ventura Publisher)

.GEN

Compiled template (dBase Application Generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GENfrom Whatis-Extensions

Generated text (Ventura Publisher)

.GEOfrom Whatis-Extensions

Geode (Geoworks)

.GetRightfrom Whatis-Extensions

Unfinished-Download (GetRight)

.GFBfrom Whatis-Extensions

Compressed gif image (GIFBLAST)

.GFCfrom Whatis-Extensions

Patton&Patton Flowcharting 4 flowchart

.GFI

Graphics Link presentation (Genigraphics) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.GFTfrom Whatis-Extensions

Font (NeoPaint)

.GFXfrom Whatis-Extensions

Genigraphics Graphics Link presentation

.GIBfrom Whatis-Extensions

Chart (Graph-in-the-Box)

.GIDfrom Whatis-Extensions

<http://searchWin2000.techtarget.com/sDefinition/ 0,,sid1_gci212189,00.html> Windows 95 global index (containing help status)

.GIF

<http://searchWebServices.techtarget.com/sDefinition/ 0,,sid26_gci213984,00.html> Bitmap (CompuServe) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.gif, .gifffrom Rute-Users-Guide

GIF image file.

.GIM

Graphics Link presentation (Genigraphics) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.GIW

Presentation (Graph-in-the-Box for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GIX

Graphics Link presentation (Genigraphics) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.GKHfrom Whatis-Extensions

Ensoniq EPS family disk image

.GKSfrom Whatis-Extensions

GripKey document (Gravis)

.GLfrom Whatis-Extensions

Animation file (GRASP graphical System for Presentation)

.GLMfrom Whatis-Extensions

Datafile (Glim)

.GLSfrom Whatis-Extensions

Datafile (Across)

.GLYfrom Whatis-Extensions

Glossary (Microsoft Word)

.GMFfrom Whatis-Extensions

CGM Graphics (APPLAUSE)

.GMPfrom Whatis-Extensions

Tile map (Geomorph) (SPX)

.GMR

Graphical monitor record (Schlafhorst Automation) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GNA

Graphics Link presentation (Genigraphics) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.GNOfrom Whatis-Extensions

Genealogy document file (Genopro)

.GNTfrom Whatis-Extensions

Generated executable code (Micro Focus)

.GNX

Graphics Link presentation (Genigraphics) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.GOCfrom Whatis-Extensions

Goc sorce code (Geoworks)

.GOHfrom Whatis-Extensions

Goc header (Geoworks)

.GPfrom Whatis-Extensions

Geode parameter file (Geoworks Glue)

.GPHfrom Whatis-Extensions

Graph (Lotus 1-2-3/G)

.GPKfrom Whatis-Extensions

Program package (Omnigo)

.GPPfrom Whatis-Extensions

Graph paper application file (GraphPap) (Generates graph paper)

.GR2from Whatis-Extensions

Screen driver (Microsoft Windows 3.x)

.GRAfrom Whatis-Extensions

Datafile (SigmaPlot)

.GRAfrom Whatis-Extensions

Graph (Microsoft)

.GRBfrom Whatis-Extensions

Shell Monitor (MS-DOS v5.0)

.GRDfrom Whatis-Extensions

Image processing grid (CHIPS)

.GRFfrom Whatis-Extensions

Graph (Charisma Graph Plus)

.GRFfrom Whatis-Extensions

Grapher (Golden Software) graph

.GRPfrom Whatis-Extensions

Pictures group (PixBase)

.GRPfrom Whatis-Extensions

Program Manager Group (Microsoft)

.GRYfrom Whatis-Extensions

Raw graphic (GREY)

.GS1from Whatis-Extensions

Presentation (GraphShow)

.GSDfrom Whatis-Extensions

Vector graphic (Professional Draw)

.GSMfrom Whatis-Extensions

Audio stream Raw 'byte aligned (GSM 6.10 audio stream)

.GSMfrom Whatis-Extensions

Audio stream Raw GSM (6.10 audio stream)

.GSMfrom Whatis-Extensions

GSM w. header/QuickLink file (US Robotics voice modems)

.GSMfrom Whatis-Extensions

GSM w.o. header/VoiceGuide/RapidComm file (US Robotics voice modems)

.GSPfrom Whatis-Extensions

Sketch pad file (GeoMeter Sketch Pad)

.GSP

Zip file (Gnuzip) (Allows for output to html) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GSWfrom Whatis-Extensions

Worksheet (GraphShow)

.GT2

Music module (Graoumftracker) (new) (MOD) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.GTK

Music module (Graoumftracker) (old) (MOD) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.GUPfrom Whatis-Extensions

Data (PopMail)

.GWPfrom Whatis-Extensions

Greetings WorkShop file

.GWX

Graphics Link presentation (Genigraphics) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.GWZ

Graphics Link presentation (Genigraphics) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.GXLfrom Whatis-Extensions

Graphics library (Genus)

.GZfrom Whatis-Extensions

Compressed file (Unix gzip)

.gz

File compressed with the gzip compression program. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.hfrom Rute-Users-Guide

C/C++ program header file.

.Hfrom Whatis-Extensions

Program header (C)

.H!from Whatis-Extensions

On-line Help (Flambeaux Help!)

.H++from Whatis-Extensions

Header file (C++)

.H--from Whatis-Extensions

Header file (Sphinx C--)

.HAfrom Whatis-Extensions

Compressed archive (HA)

.HAMfrom Whatis-Extensions

Driver file (Novell Netware)

.HAMfrom Whatis-Extensions

Vector graphics saved file (Amiga)

.HAPfrom Whatis-Extensions

Compressed archive (HA)

.HBKfrom Whatis-Extensions

Accounting data file (Humanic Software)

.HBKfrom Whatis-Extensions

Handbook (MathCad)

.HCMfrom Whatis-Extensions

Configuration file (IBM HCM)

.HCOMfrom Whatis-Extensions

Sound Tools file (HCOM)

.HCR

Production configuration file (IBM HCD/HCM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HDFfrom Whatis-Extensions

Help file (Help development kit)

.HDFfrom Whatis-Extensions

National Center for Supercomputing Applications (NCSA) Geospatial Hierarchical Data

.HDL

Alternate download listing (ProComm Plus) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.HDRfrom Whatis-Extensions

Database header (Pc-File+)

.HDRfrom Whatis-Extensions

Datafile (Egret)

.HDRfrom Whatis-Extensions

Message header text (1st Reader)

.HDRfrom Whatis-Extensions

Message header text (ProComm Plus)

.HDWfrom Whatis-Extensions

Vector graphics (Harvard Draw)

.HDXfrom Whatis-Extensions

Help index (AutoCAD)

.HDXfrom Whatis-Extensions

Help index (Zortech C++)

.HEDfrom Whatis-Extensions

Document (HighEdit)

.HELfrom Whatis-Extensions

Hellbender saved game (Microsoft)

.HEXfrom Whatis-Extensions

Macintosh BinHex <http://WhatIs.techtarget.com/definition/ 0,,sid9_gci211663,00.html> 2.0 file

.HFIfrom Whatis-Extensions

HP font info (GEM)

.HGLfrom Whatis-Extensions

Drawing file (HP Graphics Language)

.HHfrom Whatis-Extensions

Header file (C++)

.HHfrom Whatis-Extensions

Help system map (Generic)

.HHHfrom Whatis-Extensions

Precompiled header (Power C)

.HHP

Help information for remote users (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HITfrom Whatis-Extensions

Audio file (HitPlayer)

.HLBfrom Whatis-Extensions

Help library (VAX)

.HLPfrom Whatis-Extensions

Help file (Generic)

.HLPfrom Whatis-Extensions

Windows Help file (DataCAD)

.HMIfrom Whatis-Extensions

Human machine interfaces MIDI music file (Descent)

.HMM

Alternate mail read option menu (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HMPfrom Whatis-Extensions

Human machine interfaces MIDI music file (Descent)

.HNCfrom Whatis-Extensions

Program files (CNC)

.HOGfrom Whatis-Extensions

Lucas Arts Dark Forces WAD <http://WhatIs.techtarget.com/definition/ 0,,sid9_gci213332,00.html> file

.HOGfrom Whatis-Extensions

Main data package file (Descent3)

.HOGfrom Whatis-Extensions

Mission file (Descent 1-2)

.HOTfrom Whatis-Extensions

Document file (HotSend)

.HP8

Ascii text Roman8 character set (NewWave Write) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HPCfrom Whatis-Extensions

Font language file (Hewlett-Packard)

.HPFfrom Whatis-Extensions

HP LaserJet font (Adobe Pagemaker)

.HPFfrom Whatis-Extensions

Partial download file (HotLine)

.HPGfrom Whatis-Extensions

HPGL Plotter vector graphics (AutoCAD)

.HPG

HPGL Plotter vector graphics (Harvard Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HPIfrom Whatis-Extensions

Font information (GEM)

.HPJfrom Whatis-Extensions

Help Project file (Visual Basic)

.HPKfrom Whatis-Extensions

Compressed archive (HPACK)

.HPMfrom Whatis-Extensions

Alternative menu for privileged users (ProComm Plus)

.HPMfrom Whatis-Extensions

Emm text (HP NewWave)

.HPPfrom Whatis-Extensions

Header file (Zortech C++)

.HPPfrom Whatis-Extensions

Program header (C++)

.HQXfrom Whatis-Extensions

BinHex (Macintosh 4.0)

.HRFfrom Whatis-Extensions

Rastor graphic (Hitachi)

.HRM

Alternate menu for limited users (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HS2from Whatis-Extensions

Monochrome image (Postering)

.HSCfrom Whatis-Extensions

FM synthesized music file (Used by many old games, e.g.:FINTRIS, ROL)

.HSIfrom Whatis-Extensions

Graphic (Handmade Software, Inc.)

.HSTfrom Whatis-Extensions

History file (Generic)

.HSTfrom Whatis-Extensions

History file (ProComm Plus)

.HTfrom Whatis-Extensions

HyperTerminal file

.HTAfrom Whatis-Extensions

A HTML file that has been used to by viruses to update the system registry

.HTMfrom Whatis-Extensions

A Web page (a file containing Hypertext Markup Language - HTML - markup)

.htm, .html, .shtm, .htmlfrom Rute-Users-Guide

Hypertext Markup Language. A web page of some sort.

.HTMLfrom Whatis-Extensions

<http://searchWebServices.techtarget.com/sDefinition/ 0,,sid26_gci212286,00.html> A Web page (a file containing Hypertext Markup Language - HTML - markup)

.HTTfrom Whatis-Extensions

Hypertext template (Microsoft)

.HTXfrom Whatis-Extensions

Template (Extended HTML)

.HWDfrom Whatis-Extensions

Presentation (Hollywood)

.HWP

Korean word processor document format (HanGul) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HXM

Alternate protocal selection menu (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HXMfrom Whatis-Extensions

HAM extension (Descent2)

.HXXfrom Whatis-Extensions

Header file (C++)

.HY1

Hyphenation algorythm (Ventura Publisher) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.HY2

Hyphenation algorythm (Ventura Publisher) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.HYCfrom Whatis-Extensions

Datafile (WordPerfect for Windows)

.HYD

Hyphenation dictionary (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HYM

3D Image binary file (Hymarc Scandata Scanner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HYPfrom Whatis-Extensions

Compressed archive (HYPER)

.Ifrom Whatis-Extensions

Intermediate file (Borland C++)

.ifrom Rute-Users-Guide

SWIG source, or C preprocessor output.

.IANfrom Whatis-Extensions

Text file (Sterling Software) (Groundworks COOL Business Team Model)

.IAXfrom Whatis-Extensions

Bitmap (IBM Image Acess eXecutive)

.IBM

Compressed archive (ARCHDOS, IBM Internal only) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ICAfrom Whatis-Extensions

Bitmap graphic (Image Object Content Architecture)

.ICAfrom Whatis-Extensions

Citrix file

.ICBfrom Whatis-Extensions

Targa bitmap

.ICCfrom Whatis-Extensions

Catalog file (IronClad)

.ICCfrom Whatis-Extensions

Printer file (Kodak)

.ICDfrom Whatis-Extensions

Drawing file (IronClad)

.ICLfrom Whatis-Extensions

Icon Library (Generic industry standard)

.ICMfrom Whatis-Extensions

Image Color Matching profile

.ICNfrom Whatis-Extensions

Icon source code

.ICOfrom Whatis-Extensions

Icon (Microsoft Windows 3.x)

.ICSfrom Whatis-Extensions

Scene file (IronClad)

.IDfrom Whatis-Extensions

Disk identification file (Generic)

.IDBfrom Whatis-Extensions

Intermediate file (Microsoft Developer)

.IDDfrom Whatis-Extensions

MIDI <http://WhatIs.techtarget.com/definition/0,,sid9_gci212572,00.html> Instrument Definition

.IDEfrom Whatis-Extensions

Project file (Borland C++ v4.5)

.IDFfrom Whatis-Extensions

MIDI Instrument Definition (Windows 95 required file)

.IDIF

Identification file (Netscape saved address book) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IDQfrom Whatis-Extensions

Data Query (Internet)

.IDWfrom Whatis-Extensions

Vector graphic (IntelliDraw)

.IDX

Index file (Microsoft Clip Gallery v. 1.x) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.IDXfrom Whatis-Extensions

Index file (Pro/Engineer)

.IDXfrom Whatis-Extensions

Microsoft Outlook Express file

.IDX

Relational database index (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IDXfrom Whatis-Extensions

Relational database index (Symantec Q&A)

.IFDfrom Whatis-Extensions

Form (JetForm Design)

.IFFfrom Whatis-Extensions

Image (Sun TAAC/SDSC Image Tool)

.IFFfrom Whatis-Extensions

Interchange file, (general purpose data storage format))

.IFOfrom Whatis-Extensions

Digital Video Disk (DVD) datafile

.IFO

Graphic object layer data (ImageForge Pro) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.IFPfrom Whatis-Extensions

Script file (KnowledgeMan)

.IFSfrom Whatis-Extensions

Compressed fractal image (Yuvpak)

.IFSfrom Whatis-Extensions

Create executable library (ImageForge/ImageForge Pro)

.IFSfrom Whatis-Extensions

System file (OS/2)

.IGES

Initial Graphics Exchange Specification (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IGFfrom Whatis-Extensions

Metafile (Inset Systems)

.IIF

Interchange file (QuickBooks for Windows) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.IIMfrom Whatis-Extensions

Music module

.ILBfrom Whatis-Extensions

Datafile (Scream Tracker)

.ILBMfrom Whatis-Extensions

Bitmap (graphic image)

.ILKfrom Whatis-Extensions

Program outline (Microsoft ILink incremental linker)

.IM8from Whatis-Extensions

Raster graphic (Sun Microsystems)

.IMAfrom Whatis-Extensions

Image (WinImage)

.IMAfrom Whatis-Extensions

Vector graphic (EGO,Chart)

.IMFfrom Whatis-Extensions

MIDI music file (Corridor 7, Blake Stone, Wolfenstein 3D, Spear of Destiny)

.IMGfrom Whatis-Extensions

Bitmap graphic (Ventura Publisher)

.IMGfrom Whatis-Extensions

Image (GEM)

.IMPfrom Whatis-Extensions

Spreadsheet (Lotus Improv)

.IMQfrom Whatis-Extensions

Image presentation (ImageQ)

.IMS

Create executable library data (IconForge) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.infrom Rute-Users-Guide

configure input file.

.IN$from Whatis-Extensions

Installation file (HP NewWave)

.IN3

Input device driver (Harvard Graphics v3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INBfrom Whatis-Extensions

Test script (Vermont High Test)

.inboundfrom Whatis-Extensions

internet email message (Microsoft Exchange Server v 5.0)

.INCfrom Whatis-Extensions

Include file (Assembler language or Active Server)

.INDfrom Whatis-Extensions

Index (dBase IV)

.INDfrom Whatis-Extensions

Shared Database file (Specifically in Microsoft Windows)

.Individualfrom Whatis-Extensions

Software MultiModule screensaver

.INFfrom Whatis-Extensions

Information file (Generic)

.INFfrom Whatis-Extensions

Install script (Generic)

.INFfrom Whatis-Extensions

Type I LaserJet font information file

.infofrom Rute-Users-Guide

Info pages read with the info command.

.INIfrom Whatis-Extensions

Bank setup file (Gravis UltraSound)

.INIfrom Whatis-Extensions

Initialization file (Generic)

.INI

Setup file (MWave DSP synth's mwsynth.ini GM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INKfrom Whatis-Extensions

Pantone reference fills file (CorelDRAW)

.INL

Inline function file (Microsoft Visual C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INPfrom Whatis-Extensions

Source code for form, (Oracle,version 3.0 and earlier)

.INRSfrom Whatis-Extensions

INRS-Telecommunications audio

.INSfrom Whatis-Extensions

Datafile (WordPerfect for Windows)

.INSfrom Whatis-Extensions

Install script (InstallShield)

.INSfrom Whatis-Extensions

Installation script (1st Reader)

.INSfrom Whatis-Extensions

Instrument file (Ensoniq EPS Family)

.INSfrom Whatis-Extensions

Instrument music file (Adlib)

.INSfrom Whatis-Extensions

Sample (Cell/II MAC/PC instruments)

.INSfrom Whatis-Extensions

Sign-up file (X-Internet)

.INTfrom Whatis-Extensions

Interfaced units (Borland)

.INTfrom Whatis-Extensions

Intermediate executable code (Produced when a source program is syntax-checked)

.INXfrom Whatis-Extensions

Index file (Foxbase)

.IOfrom Whatis-Extensions

Compressed archive (CPIO)

.IOBfrom Whatis-Extensions

3D graphics database (TDDD format)

.IOC

Organizational chart (Instant ORGcharting!) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IOFfrom Whatis-Extensions

Findit document (Microsoft Findit)

.IONfrom Whatis-Extensions

File description (4dos descript.ion)

.IPL

Pantone Spot reference pallette (CorelDRAW) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IPS

International patching system binary patch file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IQYfrom Whatis-Extensions

Internet inquiry (Microsoft)

.IRSfrom Whatis-Extensions

Resource file (WordPerfect for Windows)

.ISDfrom Whatis-Extensions

Spell checker dictionary (RapidFile)

.ISHfrom Whatis-Extensions

Compressed archive (ISH)

.ISOfrom Whatis-Extensions

<http://searchCIO.techtarget.com/sDefinition/0,,sid19_gci214046,00.html> Lists the files on a CD-ROM; based on the ISO 9660 CD-ROM file system standard

.ISOfrom Whatis-Extensions

ISO (International Standards Organization table, aka: ISO)

.ISPfrom Whatis-Extensions

Sign-up file(X-Internet)

.ISTfrom Whatis-Extensions

Instrument file (Digitaltracker)

.ISUfrom Whatis-Extensions

Uninstall script (InstallShield)

.ITfrom Whatis-Extensions

Music module (MOD) (Impulse Tracker)

.ITfrom Whatis-Extensions

Settings file (intalk)

.ITFfrom Whatis-Extensions

Interface file (JPI Pascal TopSpeed)

.ITIfrom Whatis-Extensions

Instrument file (Impulse Tracker)

.ITS

Internet document set (possibly a Microsoft file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ITSfrom Whatis-Extensions

Sample file (Impulse Tracker)

.IVfrom Whatis-Extensions

Open Inventor file

.IVDfrom Whatis-Extensions

Microdata dimension or variable-level file (Beyond 20/20)

.IVPfrom Whatis-Extensions

User subset profile (Beyond 20/20)

.IVTfrom Whatis-Extensions

Table or aggregate data (Beyond 20/20)

.IVXfrom Whatis-Extensions

Microdata directory (Beyond 20/20)

.IWfrom Whatis-Extensions

Presentation flowchart (IconAuthor-HSC Interactive)

.IWfrom Whatis-Extensions

Screensaver (Idlewild)

.IWAfrom Whatis-Extensions

Text file (IBM Writing Assistant)

.IWCfrom Whatis-Extensions

Install Watch document

.IWMfrom Whatis-Extensions

Start file (IconAuthor)

.IWPfrom Whatis-Extensions

Text file (Wang)

.IZTfrom Whatis-Extensions

Binary token file (IZT)

.J62from Whatis-Extensions

Ricoh camera file

.JARfrom Whatis-Extensions

Java ARchive (a compressed file for applets and related files)

.JASfrom Whatis-Extensions

Graphic (Generic)

.JAVAfrom Whatis-Extensions

Source code (Java)

.JBDfrom Whatis-Extensions

Datafile (SigmaScan)

.JBFfrom Whatis-Extensions

Image browser file (Paint Shop Pro)

.JBXfrom Whatis-Extensions

Project file (Project Scheduler 4.0)

.JFFfrom Whatis-Extensions

JPEG <http://searchWebServices.techtarget.com/sDefinition/ 0,,sid26_gci212425,00.html> image

.JFIFfrom Whatis-Extensions

JPEG <http://searchWebServices.techtarget.com/sDefinition/ 0,,sid26_gci212425,00.html> image

.JIFfrom Whatis-Extensions

JPEG <http://searchWebServices.techtarget.com/sDefinition/ 0,,sid26_gci212425,00.html> image

.JMPfrom Whatis-Extensions

Discovery chart-to-statistics (SAS JMP)

.JN1from Whatis-Extensions

Jill of the Jungle data (Epic MegaGames)

.JNBfrom Whatis-Extensions

Workbook file (Sigma Plot 5)

.JOBfrom Whatis-Extensions

Vector graphics file created by conversion of a IMG file (QuestVision)

.JORfrom Whatis-Extensions

Journal (Microsoft SQL Server)

.JOUfrom Whatis-Extensions

Journal backup (VAX Edt editor)

.JPCfrom Whatis-Extensions

Graphic (Japan PIC)

.JPEfrom Whatis-Extensions

JPEG <http://searchWebServices.techtarget.com/sDefinition/ 0,,sid26_gci212425,00.html> image

.JPEGfrom Whatis-Extensions

<http://searchWebServices.techtarget.com/sDefinition/ 0,,sid26_gci212425,00.html>

.JPEGfrom Whatis-Extensions

compressed bitmap

.JPGfrom Whatis-Extensions

JPEG bitmap

.jpg, .jpegfrom Rute-Users-Guide

JPEG image file.

.JSfrom Whatis-Extensions

JavaScript source code

.JSDfrom Whatis-Extensions

Jet Suite document (eFAX)

.JSPfrom Whatis-Extensions

A HTML page containing a reference to a Java servlet

.JTF

Bitmap graphic (JPEG Tagged Interchange Format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JTFfrom Whatis-Extensions

Fax document (Hayes JT Fax)

.JTFfrom Whatis-Extensions

JPEG bitmap

.JTKfrom Whatis-Extensions

Java ToolKit file (Sun Microsystems)

.JWfrom Whatis-Extensions

Text document (JustWrite)

.JWLfrom Whatis-Extensions

Library (JustWrite)

.JZZfrom Whatis-Extensions

Spreadsheet (Jazz)

.K25from Whatis-Extensions

Sample file (Kurzweil 2500)

.KARfrom Whatis-Extensions

MIDI file (text+MIDI) (Karaoke)

.KBfrom Whatis-Extensions

Keyboard script (Borland C++ 4.5)

.KBfrom Whatis-Extensions

Program source code (Knowledge Pro)

.KBDfrom Whatis-Extensions

Keyboard mapping script (Procomm Plus, LocoScript, Signature)

.KBMfrom Whatis-Extensions

Keyboard mapping script (Reflection 4.0)

.KCLfrom Whatis-Extensions

Lisp source code (Kyoto Common Lisp)

.KDCfrom Whatis-Extensions

Image (Kodak Photo-Enhancer)

.KEXfrom Whatis-Extensions

Macro (KEDIT)

.KEYfrom Whatis-Extensions

Datafile (Forecast Pro)

.KEYfrom Whatis-Extensions

Icon toolbar (DataCAD)

.KEYfrom Whatis-Extensions

Keyboard Macro

.KEYfrom Whatis-Extensions

Security file (Such as a software registration number)

.KFXfrom Whatis-Extensions

Image (KoFax Group 4)

.KIZfrom Whatis-Extensions

Digital postcard (Kodak)

.KKWfrom Whatis-Extensions

Contains all K-keywords in the RoboHELP Help project Index Designer not associated with topics

.KMPfrom Whatis-Extensions

KeyMaP (Korg Trinity)

.KPPfrom Whatis-Extensions

Toolpad (SmartPad)

.KPSfrom Whatis-Extensions

Bitmap graphic (IBM KIPS)

.KQPfrom Whatis-Extensions

Native Camera file (Konica)

.KR1

Sample (multi-floppy) file (Kurzweil 2000) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.KRZfrom Whatis-Extensions

Sample file (Kurzweil 2000)

.KSFfrom Whatis-Extensions

Sample File (Korg Trinity)

.KYBfrom Whatis-Extensions

Keyboard mapping (FTP)

.KYEfrom Whatis-Extensions

Game data (Kye)

.Lfrom Whatis-Extensions

Linker directive file (WATCOM wlink)

.Lfrom Whatis-Extensions

Source code (Lex)

.Lfrom Whatis-Extensions

Source code (Lisp)

.LABfrom Whatis-Extensions

Datafile (NCSS-SOLO)

.LABfrom Whatis-Extensions

Label file (Visual dBase)

.LABfrom Whatis-Extensions

Mailing labels (Microsoft Excel)

.LANfrom Whatis-Extensions

Loadable module (LAN DLL) (NetWare)

.LAYfrom Whatis-Extensions

Clipart file (Printmaster Gold)

.LAYfrom Whatis-Extensions

Word Chart layout (APPLAUSE)

.LBGfrom Whatis-Extensions

Label generator data (dBase IV)

.LBLfrom Whatis-Extensions

Label (Clipper 5)

.LBLfrom Whatis-Extensions

Label (dBase IV)

.LBLfrom Whatis-Extensions

Label (dBFast)

.LBMfrom Whatis-Extensions

Bitmap (DeluxePaint)

.LBMfrom Whatis-Extensions

Linear Bitmap graphics (XLib)

.LBOfrom Whatis-Extensions

Compiled label (dBase IV)

.LBRfrom Whatis-Extensions

Compressed archive (LU)

.LBRfrom Whatis-Extensions

Display driver (Lotus 1-2-3)

.LBTfrom Whatis-Extensions

Labels (Microsoft FoxPro)

.LBXfrom Whatis-Extensions

Labels (Microsoft FoxPro)

.LCF

Linker control file (Norton Guides compiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LCHfrom Whatis-Extensions

Used in a program (unknown) that monitors a network's response time

.LCKfrom Whatis-Extensions

Lockfile (Paradox)

.LCLfrom Whatis-Extensions

Datafile (FTP)

.LCN

Lection document (WordPerfect for Windows) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.LCSfrom Whatis-Extensions

Data History file (ACT!)

.LCWfrom Whatis-Extensions

Spreadsheet (Lucid 3-D)

.LDfrom Whatis-Extensions

Long distance area codes file (Telix)

.LD1from Whatis-Extensions

Overlay file (dBase)

.LDBfrom Whatis-Extensions

Lock file (Microsoft Access)

.LDFfrom Whatis-Extensions

Library definition file (Geoworks Glue)

.LDIFfrom Whatis-Extensions

Structured text file used for sharing information between E-Mail clients (Microsoft, Netscape and others)

.LDLfrom Whatis-Extensions

Library (Corel Paradox)

.LEGfrom Whatis-Extensions

Legacy document

.LESfrom Whatis-Extensions

System game profiles (same as REG file) (Logitec Entertainment)

.LEVfrom Whatis-Extensions

Level file (NetHack 3.x)

.LEXfrom Whatis-Extensions

Dictionary file (Generic)

.LFD

Data resource file (LucasArts Dark Forces) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.LFPfrom Whatis-Extensions

LaserForms Plus file (Evergreen)

.LFTfrom Whatis-Extensions

Laser printer font (ChiWriter)

.LFTfrom Whatis-Extensions

Loft file (3-D Studios) (DOS)

.LGfrom Whatis-Extensions

Logo procedure definition (LSRHS Logo)

.LGCfrom Whatis-Extensions

Application log file

.LGDfrom Whatis-Extensions

Application log file

.LGOfrom Whatis-Extensions

Header and footer logo (SuperFax)

.LGOfrom Whatis-Extensions

Logo file (PaintBrush)

.LGOfrom Whatis-Extensions

Startup logo (Microsoft Windows 3.x-9.x)

.LHAfrom Whatis-Extensions

Alternate file suffix for LZH

.LHAfrom Whatis-Extensions

Compressed Archive (LHA/LHARC)

.LHWfrom Whatis-Extensions

Compressed Amiga archive (LHWARP)

.LIBfrom Whatis-Extensions

Library file (Generic)

.LIFfrom Whatis-Extensions

Compressed archive (Generic)

.LIF

Logical Interchange data (Hewlett-Packard) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.LIMfrom Whatis-Extensions

Compressed archive (LIMIT)

.LINfrom Whatis-Extensions

Interactive music sequencing data file (Electronic Arts)

.LINfrom Whatis-Extensions

Line type file (DataCad)

.LISfrom Whatis-Extensions

Listing (VAX)

.LISfrom Whatis-Extensions

Output file produced by a Structured Query Reporting (SQR) program

.LIXfrom Whatis-Extensions

Logos library system file

.ljfrom Rute-Users-Guide

LaserJet file. Suitable input to a HP LaserJet printer.

.LJ

Text file (Hewlett-Packard LaseJet II printer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LKfrom Whatis-Extensions

Database file (OpenSight-16 bit)

.LKOfrom Whatis-Extensions

Linked object (Microsoft Outlook Express Junkmail file)

.LL3from Whatis-Extensions

Document file (LapLink III)

.LLXfrom Whatis-Extensions

Exchange agent (Laplink)

.LNKfrom Whatis-Extensions

Datafile (Revelation)

.LNKfrom Whatis-Extensions

Linker response file (RTLink)

.LNKfrom Whatis-Extensions

Shortcut file (Microsoft Windows 9.x)

.LODfrom Whatis-Extensions

Load file (Generic)

.LOGfrom Whatis-Extensions

Log file (Generic)

.logfrom Rute-Users-Guide

Log file of a system service. This file grows with status messages of some system program.

.LOKfrom Whatis-Extensions

Compressed file (FileWrangler)

.LPfrom Whatis-Extensions

A document reader used for downloading mortgage closing information (DesertDocs)

.LPCfrom Whatis-Extensions

Printer driver (TEKO)

.LPDfrom Whatis-Extensions

Helix Nuts and Bolts file

.LPIfrom Whatis-Extensions

Information file for laser printers (common with some scanning sofware)

.LRCfrom Whatis-Extensions

Video phone file (Intel)

.LRFfrom Whatis-Extensions

Linker response file (Microsoft C/C++)

.LRS

Language resource file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LSFfrom Whatis-Extensions

Logos library system file

.LSLfrom Whatis-Extensions

Saved library (Corel Paradox)

.LSLfrom Whatis-Extensions

Script library (Lotus)

.lsmfrom Rute-Users-Guide

LINUX Software Map entry.

.LSPfrom Whatis-Extensions

AutoLISP, CommonLISP, and other LISP language files

.LSSfrom Whatis-Extensions

Spreadsheet (Legato)

.LSTfrom Whatis-Extensions

Keyboard macro (1st Reader)

.LSTfrom Whatis-Extensions

List file (Generic)

.LSTfrom Whatis-Extensions

Spool file (Oracle)

.LTMfrom Whatis-Extensions

Form (Lotus Forms)

.LUfrom Whatis-Extensions

Library unit file (ThoughtWing)

.LVLfrom Whatis-Extensions

Miner Descent/D2 Level extension (Parallax Software)

.LWDfrom Whatis-Extensions

Text document (LotusWorks)

.LWFfrom Whatis-Extensions

Wavelet graphics file (Luratech)

.LWLOfrom Whatis-Extensions

Layered Object file (Lightwave)

.LWOBfrom Whatis-Extensions

Object file (Lightwave)

.LWPfrom Whatis-Extensions

Wordpro 96/97 file (Lotus)

.LWSCfrom Whatis-Extensions

Scene file (Lightwave)

.LWZ

Linguistically enhanced sound file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LYRfrom Whatis-Extensions

Layer file (DataCAD)

.lyxfrom Rute-Users-Guide

LyX word processor document.

.LZD

Difference file for binaries (Ldiff 1.20) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.LZHfrom Whatis-Extensions

Compressed archive (LH ARC)

.LZSfrom Whatis-Extensions

Compressed archive (LARC)

.LZSfrom Whatis-Extensions

Data file (Skyroads)

.LZWfrom Whatis-Extensions

Compressed Amiga archive (LHWARP)

.LZXfrom Whatis-Extensions

Compressed archive (Generic)

.Mfrom Whatis-Extensions

Macro module (Brief)

.Mfrom Whatis-Extensions

Program file (Matlab)

.Mfrom Whatis-Extensions

Standard package (Mathematica)

.M11from Whatis-Extensions

Text file (MASS11)

.M1Vfrom Whatis-Extensions

MPEG-related file (MIME type 'mpeg')

.M3from Whatis-Extensions

source code file (Modula 3)

.M3Dfrom Whatis-Extensions

3D animation (Corel Motion)

.M3U

MPEG URL (MIME audio file) (MP3 Playlist) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.M4from Whatis-Extensions

M4 Preprocessor file (Unix)

.MA3from Whatis-Extensions

Macro (Harvard Graphics 3.0)

.MACfrom Whatis-Extensions

Image (MacPaint)

.MACfrom Whatis-Extensions

Macro (Generic)

.MADfrom Whatis-Extensions

Module (Microsoft Access)

.MAFfrom Whatis-Extensions

Form (Microsoft Access)

.MAG

A graphics format found in some Japanese files From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAGfrom Whatis-Extensions

MAG graphics format created by Woody Lynn (MPS Magro Paint System)

.MAGICfrom Whatis-Extensions

Configuration file (Magic Mail Monitor)

.MAIfrom Whatis-Extensions

Mail (VAX)

.MAKfrom Whatis-Extensions

Makefile (Generic)

.MAKfrom Whatis-Extensions

Project (Visual Basic or Microsoft C++)

.MAMfrom Whatis-Extensions

Macro (Microsoft Access)

.MANfrom Whatis-Extensions

Command module (Unix)

.manfrom Rute-Users-Guide

Man page.

.MANfrom Whatis-Extensions

Manual page output (Unix)

.MAPfrom Whatis-Extensions

Color pallette (Generic)

.MAP

Format data (Micrografx Picture Publisher) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.MAPfrom Whatis-Extensions

Linker map file

.MAPfrom Whatis-Extensions

Map file (Atlas MapMaker)

.MAPfrom Whatis-Extensions

Map file (Generic)

.MAP

Map file used for color choices (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAPfrom Whatis-Extensions

Network map (AccView)

.MAPfrom Whatis-Extensions

WAD <http://WhatIs.techtarget.com/definition/0,,sid9_gci213332,00.html> game file (Duke Nukem 3D)

.MAQfrom Whatis-Extensions

Query (Microsoft Access)

.MARfrom Whatis-Extensions

Assembly program (VAX Macro)

.MARfrom Whatis-Extensions

Report (Microsoft Access)

.MAS

Graphics file (Lotus Freelance Smartmaster) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MATfrom Whatis-Extensions

Binary file (Matlab)

.MATfrom Whatis-Extensions

Table (Microsoft Access)

.MAUDfrom Whatis-Extensions

Sample format (Maud)

.MAXfrom Whatis-Extensions

3D scene (Kinetix 3D Studio Max)

.MAXfrom Whatis-Extensions

Document (Paperport)

.MAXfrom Whatis-Extensions

Layout file (OrCad)

.MAXfrom Whatis-Extensions

Source code (MAX)

.MAZfrom Whatis-Extensions

A format use by Division's dVS/dVISE

.MAZfrom Whatis-Extensions

Maze data file (Hover)

.MBfrom Whatis-Extensions

Memo field values for database (Paradox)

.MB1from Whatis-Extensions

Data file (Apogee Monster Bash)

.MBKfrom Whatis-Extensions

Multiple index archive (dBase IV)

.MBOXfrom Whatis-Extensions

Mailbox file (Berkeley Unix)

.MBXfrom Whatis-Extensions

Extension Microsoft Outlook adds to saved email, Eudora mailboxes

.MCCfrom Whatis-Extensions

Calling card (Dialer10)

.MCCfrom Whatis-Extensions

Configuration file (MathCad)

.MCDfrom Whatis-Extensions

Document (MathCad)

.MCFfrom Whatis-Extensions

Font file (MathCad)

.MCFfrom Whatis-Extensions

Magic control file

.MCIfrom Whatis-Extensions

Command script (Media Control Interface)

.MCPfrom Whatis-Extensions

Application script (Capsule)

.MCPfrom Whatis-Extensions

Printer driver (MathCad)

.MCPfrom Whatis-Extensions

Project file (Metrowerks CodeWarrior)

.MCRfrom Whatis-Extensions

Keyboard macro file (DataCad)

.MCWfrom Whatis-Extensions

Document (Microsoft Word for Macintosh)

.MCWfrom Whatis-Extensions

Text document (MacWrite II)

.MDfrom Whatis-Extensions

Compressed archive (MDCD)

.MDAfrom Whatis-Extensions

Add-in file (Microsoft Access)

.MDAfrom Whatis-Extensions

Workgroup (Microsoft Access version 2)

.MDBfrom Whatis-Extensions

Database (Microsoft Access)

.MDEfrom Whatis-Extensions

MDE file (Microsoft Access)

.MDLfrom Whatis-Extensions

Model (3D Design Plus)

.MDLfrom Whatis-Extensions

Model file (Quake)

.MDLfrom Whatis-Extensions

Model file element (Rational Rose)

.MDLfrom Whatis-Extensions

Music module (MOD) (Digital Trakker)

.MDLfrom Whatis-Extensions

Spreadsheet (CA-Compete!)

.MDMfrom Whatis-Extensions

Modem definition (Telix)

.MDN

Blank database template (Microsoft Access) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.MDTfrom Whatis-Extensions

Add-in file (Data) (Microsoft Access)

.MDT

Data table (Microsoft ILink incremental linker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MDWfrom Whatis-Extensions

Workgroup (Microsoft Access)

.MDXfrom Whatis-Extensions

Multiple index file (dBase IV)

.MDZfrom Whatis-Extensions

Wizard template (Microsoft Access)

.MEfrom Whatis-Extensions

ASCII text document (Generic)

.MEBfrom Whatis-Extensions

Macro editor bottom overflow library (WordPerfect for Windows)

.MEDfrom Whatis-Extensions

Macro editor delete save file (WordPerfect for Windows)

.MED

Music module (MOD) (OctaMed Music Editor) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.MEM

Macro editor macro (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MEMfrom Whatis-Extensions

Memory variable save file (Clipper)

.MEMfrom Whatis-Extensions

Memory variable save file (dBase IV)

.MEM

Memory variable save file (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MEQfrom Whatis-Extensions

Macro editor print queue file (WordPerfect for Windows Library)

.MERfrom Whatis-Extensions

Format for interchanging spreadsheet/database data; recognized by Filemaker, Excel, and others

.MERfrom Whatis-Extensions

Macro editor resident area (WordPerfect for Windows Library)

.MESfrom Whatis-Extensions

Macro editor workspace file (WordPerfect for Windows)

.MESfrom Whatis-Extensions

Message file (Generic)

.METfrom Whatis-Extensions

Document file (OmniPage Pro)

.METfrom Whatis-Extensions

Macro editor top overflow file (WordPerfect for Windows Library)

.METfrom Whatis-Extensions

Presentation Manager metafile

.MEUfrom Whatis-Extensions

Menu group (DOS Shell)

.MEXfrom Whatis-Extensions

Executable command (Matlab)

.MEXfrom Whatis-Extensions

Macro editor expound file (WordPerfect for Windows)

.mffrom Rute-Users-Guide

Meta-Font font program source file.

.MFfrom Whatis-Extensions

Metafont text file

.MFGfrom Whatis-Extensions

Manufacturing file (Pro/ENGINEER)

.MGF

A file in a Materials and Geometry Format From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.MGFfrom Whatis-Extensions

Font file (MicroGrafx)

.MHTfrom Whatis-Extensions

MHTML document (Microsoft)

.MHTMfrom Whatis-Extensions

MHTML document (MIME)

.MHTMLfrom Whatis-Extensions

MHTML document (MIME)

.MIfrom Whatis-Extensions

Data file (Cocreate ME10)

.MIfrom Whatis-Extensions

Miscellaneous file (Generic)

.MICfrom Whatis-Extensions

Image Composer file (Microsoft)

.MIDfrom Whatis-Extensions

MIDI <http://WhatIs.techtarget.com/definition/0,,sid9_gci212572,00.html> music

.MIFfrom Whatis-Extensions

Interchange format (Adobe FramMaker)

.MIFFfrom Whatis-Extensions

Machine Independent File (Generic)

.MIIfrom Whatis-Extensions

Datafile (MicroStat-II)

.MIMfrom Whatis-Extensions

<http://searchWebServices.techtarget.com/sDefinition/ 0,,sid26_gci212575,00.html> A multipart file in the Multi-Purpose Internet Mail Extensions (MIME <http://searchWebServices.techtarget.com/ sDefinition/0,,sid26_gci212576,00.html>) format; often created as the result of sending e-mail with attachments in AOL. The files in a multipart MIM file can be "opened" (unarchived and separated into individual files) using Winzip or a similar program.

.MIMEfrom Whatis-Extensions

<http://searchWebServices.techtarget.com/sDefinition/ 0,,sid26_gci212576,00.html>

.MIXfrom Whatis-Extensions

Object file (Power C)

.MIXfrom Whatis-Extensions

Package file (Command & Conquer)

.MIXfrom Whatis-Extensions

Picture file (Microsoft PhotoDraw 2000)

.MIXfrom Whatis-Extensions

Picture file (Microsoft Picture-It!)

.MIXfrom Whatis-Extensions

Resource archive (Westwood Studios)

.MJFfrom Whatis-Extensions

Audio file similar to MP3 (Mjuice) (Opens with WinAmp)

.MKfrom Whatis-Extensions

Makefile (Generic)

.MKEfrom Whatis-Extensions

Makefile (Microsoft Windows SDK)

.MKIfrom Whatis-Extensions

Graphic Image (MagView 5.0) (Japanese)

.MKSfrom Whatis-Extensions

Datafile (TACT)

.ML3from Whatis-Extensions

Project file (Milestones 3.x)

.MLBfrom Whatis-Extensions

Macro library (Symphony)

.MLI

A file in 3D Studio's Material-Library format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MLID

Muliple link interface driver file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MLMfrom Whatis-Extensions

Groupwise email file (Novell Groupwise)

.MMfrom Whatis-Extensions

Text file (MultiMate Advantage II)

.MMC

Catalog file (Microsoft Clip Gallery 5.x) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.MMEfrom Whatis-Extensions

<mim.htm> A multipart file in the Multi-Purpose Internet Mail Extensions (MIME <http://searchWebServices.techtarget.com/sDefinition/ 0,,sid26_gci212576,00.html>) format; often created as the result of sending e-mail with attachments in AOL. The files in a multipart MME file can be "opened" (unarchived and separated into individual files) using Winzip or a similar program.

.MMFfrom Whatis-Extensions

Mail file (Microsoft)

.MMFfrom Whatis-Extensions

Mail message file (Microsoft Mail)

.MMF

Meal Master Format, a recipe catologing format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MMG

Beyond 20/20 table or aggregate data file From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.MMLfrom Whatis-Extensions

Bulk mail file (Created by MyMailList)

.MMM

Multimedia movie (MacroMind Director 3.x) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.MMMfrom Whatis-Extensions

Multimedia movie (Microsoft)

.MMOfrom Whatis-Extensions

Memo Writer file (RapidFile)

.MMPfrom Whatis-Extensions

MindManager file (MindMapor)

.MMPfrom Whatis-Extensions

Output video (Bravado)

.MN2from Whatis-Extensions

Mission file (Descent2)

.MN3from Whatis-Extensions

Mission file (Descent3)

.MNDfrom Whatis-Extensions

Menu source (AutoCAD Menu Compiler)

.MND,from Whatis-Extensions

MNI Mandelbrot for Windows

.MNGfrom Whatis-Extensions

Map (DeLorme Map'n'Go)

.MNGfrom Whatis-Extensions

Multi-image Network Graphics

.MNTfrom Whatis-Extensions

Menu file (Microsoft FoxPro)

.MNUfrom Whatis-Extensions

Advanced macro (HP NewWave)

.MNUfrom Whatis-Extensions

Interact menu (Intertal Systems)

.MNUfrom Whatis-Extensions

Menu (AutoCAD Menu Compiler)

.MNUfrom Whatis-Extensions

Menu (Norton Commander)

.MNUfrom Whatis-Extensions

Menu file (Visual dBase)

.MNXfrom Whatis-Extensions

Compiled menu (AutoCAD)

.MNXfrom Whatis-Extensions

Menu (Microsoft FoxPro)

.MNYfrom Whatis-Extensions

Account book (Microsoft Money)

.MOBfrom Whatis-Extensions

Device definition (PEN for Windows)

.MODfrom Whatis-Extensions

Amiga/PC tracker module

.MODfrom Whatis-Extensions

FastTracker, StarTrekker, Noise Tracker (etc.) music module file

.MODfrom Whatis-Extensions

Kernel module (Microsoft Windows 9.x)

.MOD

Modula-2 source code file (Clarion Modula-2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MODfrom Whatis-Extensions

Spreadsheet (Microsoft Multiplan)

.MONfrom Whatis-Extensions

Monitor description (ReadMail)

.MOVfrom Whatis-Extensions

Movie (AutoCAD/AutoFlix)

.MOVfrom Whatis-Extensions

Movie (QuickTime for Microsoft Windows)

.MOZfrom Whatis-Extensions

Zipped (Compressed) mod file

.MP2

MPEG Audio Layer 2 file (MIME video file) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.MP2from Whatis-Extensions

MPEG Audio Layer 2

.MP3from Whatis-Extensions

MPEG Audio Layer 3 (AC3) file

.MP3from Whatis-Extensions

MPEG Audio Layer 3 (AC3)

.MPAfrom Whatis-Extensions

MPEG-related file (MIME type 'mpeg')

.MPCfrom Whatis-Extensions

Calendar file (Microsoft Project)

.MPDfrom Whatis-Extensions

Database file (Microsoft Project)

.MPEfrom Whatis-Extensions

MPEG animation

.MPEGfrom Whatis-Extensions

<http://WhatIs.techtarget.com/definition/0,,sid9_gci212601,00.html>

.MPEGfrom Whatis-Extensions

animation

.MPGfrom Whatis-Extensions

MPEG animation

.MPM

Mathplan Macro library (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MPPfrom Whatis-Extensions

Drawing file (CAD)

.MPPfrom Whatis-Extensions

Project file (Microsoft Project)

.MPRfrom Whatis-Extensions

Menus (compiled) (Microsoft FoxPro)

.MPTfrom Whatis-Extensions

Bitmap graphics (Multipage TIFF)

.MPVfrom Whatis-Extensions

View file (Microsoft Project)

.MPXfrom Whatis-Extensions

Compiled menu program (Microsoft FoxPro)

.MPXfrom Whatis-Extensions

Exchange file (Microsoft Project) used for exporting data

.MRBfrom Whatis-Extensions

Multiple resolution bitmap graphics (Microsoft C/C++)

.MRIfrom Whatis-Extensions

MRI Scan

.MRS

Macro resource file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MSAfrom Whatis-Extensions

Archive (Magic Shadow)

.MSC

Common console document (Microsoft Windows 2000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MSCfrom Whatis-Extensions

Makefile (Microsoft C)

.MSDfrom Whatis-Extensions

Diagnostics report file (Microsoft MSD) (Diagnostics)

.MSDLfrom Whatis-Extensions

Scene Description Language (Manchester)

.MSGfrom Whatis-Extensions

Mail message (Microsoft)

.MSIfrom Whatis-Extensions

Installer package (Microsoft Windows)

.MSNfrom Whatis-Extensions

Mission File (Descent)

.MSNfrom Whatis-Extensions

Network document (Microsoft)

.MSPfrom Whatis-Extensions

Paint bitmap (Microsoft)

.MSPfrom Whatis-Extensions

Windows Installer patch file

.MSSfrom Whatis-Extensions

Manuscript text file (Jove)

.MSSfrom Whatis-Extensions

Manuscript text file (MINCE)

.MSSfrom Whatis-Extensions

Manuscript text file (Perfect Writer)

.MSSfrom Whatis-Extensions

Manuscript text file (Scribble)

.MSTfrom Whatis-Extensions

Minispecification file (Prosa)

.MSTfrom Whatis-Extensions

Setup script (Microsoft SDK)

.MSTfrom Whatis-Extensions

Windows Installer transform

.MSWfrom Whatis-Extensions

Text file (Microsoft Word)

.MSXfrom Whatis-Extensions

Compressed CP/M archive (MSX)

.MTHfrom Whatis-Extensions

Math file (Derive)

.MTMfrom Whatis-Extensions

Music module (MOD) (Multitracker)

.MTWfrom Whatis-Extensions

Datafile (Minitab)

.MTXfrom Whatis-Extensions

Twain device driver (32 bit)(UMax)

.MUfrom Whatis-Extensions

Menu (Quattro Pro)

.MULfrom Whatis-Extensions

Online game called Ultima online

.MUSfrom Whatis-Extensions

Interactive music audio data file (Electronic Arts)

.MUSfrom Whatis-Extensions

Music (Generic)

.MUSfrom Whatis-Extensions

Music (MusicTime)

.MUS10from Whatis-Extensions

Audio (Mus10)

.MVfrom Whatis-Extensions

Server-side script file (Miva)

.MVAfrom Whatis-Extensions

Video accelerator file (Matrox)

.MVBfrom Whatis-Extensions

Multimedia Viewer file (Microsoft)

.MVCfrom Whatis-Extensions

Image file (Sony Digital Mavica)

.MVE

Interplay video file (Descent2, Fallout2) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.MVFfrom Whatis-Extensions

Stop frame file (AutoCAD-AutoFlix)

.MVIfrom Whatis-Extensions

Movie command file (AutoCAD-AutoFlix)

.MVWfrom Whatis-Extensions

Log file (Saber LAN)

.MWFfrom Whatis-Extensions

Animation (ProMotion)

.MWPfrom Whatis-Extensions

Smartmaster file (Lotus WordPro 97)

.MXDfrom Whatis-Extensions

Map file (ArcInfo)

.MXTfrom Whatis-Extensions

Datafile (Microsoft C)

.MYPfrom Whatis-Extensions

Presentation file (Make Your Point)

.M_Ufrom Whatis-Extensions

Hard Drive Boot sector backup (MazeGold)

.NANfrom Whatis-Extensions

Nanoscope files (Raw Grayscale)

.NAPfrom Whatis-Extensions

Metafile (NAP)

.NAPfrom Whatis-Extensions

Video file (EnerGraphics)

.NBfrom Whatis-Extensions

Text file (Nota Bene)

.NC

Instructions for numerical control machine (CAMS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NCBfrom Whatis-Extensions

Developer Studio file (Microsoft)

.NCC

CNC (Computer Numeric Control) file (CamView 3D) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NCDfrom Whatis-Extensions

Change directory (Norton)

.NCFfrom Whatis-Extensions

Command File (Netware)

.NCFfrom Whatis-Extensions

Internal clipboard (Lotus Notes)

.NDBfrom Whatis-Extensions

Network database (Intellicom)

.NDOfrom Whatis-Extensions

3D low-polygon modeler (Nendo)

.NDX

Database file (1ACT! for Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NDXfrom Whatis-Extensions

Index file (Cindex)

.NDXfrom Whatis-Extensions

Index file (dBase II-III-IV)

.NEOfrom Whatis-Extensions

Raster graphics (Atari Neochrome)

.NES

Emulator ROMS for game console (Nintendo) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.NET

Netlist output file (Orcad Schematic Capture) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NETfrom Whatis-Extensions

Network configuration file

.netCDFfrom Whatis-Extensions

Network Common Data Form

.NEWfrom Whatis-Extensions

New info

.NEZ

Emulator file used for game consoles (NES) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.NFFfrom Whatis-Extensions

Neutral File Format

.NFOfrom Whatis-Extensions

Info file database text

.NFOfrom Whatis-Extensions

Infobase file (Folio)

.NFTfrom Whatis-Extensions

Template file (Netobject Fusion)

.NG

Online documentation database (Norton Guide) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NIL

Icon Library file (EasyIcons-compatible) (Norton) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NISTfrom Whatis-Extensions

Audio (NIST Sphere)

.NLBfrom Whatis-Extensions

Data (Oracle 7)

.NLMfrom Whatis-Extensions

Loadable Module (Netware)

.NLSfrom Whatis-Extensions

National Language Support file used for localization <http:// searchCIO.techtarget.com/sDefinition/0,,sid19_gci212496,00.html> (for example, by Uniscape <http://www.uniscape.com/index.shtml>)

.NLUfrom Whatis-Extensions

E-Mail Trigger file (Norton LiveUpdate)

.NLXfrom Whatis-Extensions

Form (FormWorx 3.0)

.NODfrom Whatis-Extensions

File (Netobject Fusion)

.NPfrom Whatis-Extensions

Project schedule (Nokia Planner)

.NPfrom Whatis-Extensions

Project schedule (Visual Planner 3.x)

.NPIfrom Whatis-Extensions

Source for interpreter (dBase Application Generator)

.NRFfrom Whatis-Extensions

Data file (NICOLET)

.NRGfrom Whatis-Extensions

Image file (Nero)

.NS2from Whatis-Extensions

Database (Lotus Notes version 2)

.NS3from Whatis-Extensions

Database (Lotus Notes version 3)

.NS4from Whatis-Extensions

Database (Lotus Notes version 4)

.NSFfrom Whatis-Extensions

Database (Lotus Notes)

.NSOfrom Whatis-Extensions

Document file (NetObject Fusion)

.NSTfrom Whatis-Extensions

Music module (MOD) (Noise Tracker)

.NTfrom Whatis-Extensions

Startup files (Microsoft Windows NT)

.NTFfrom Whatis-Extensions

Database template (Lotus Notes)

.NTRfrom Whatis-Extensions

Executable ASCII text file

.NTSfrom Whatis-Extensions

Executable ASCII text file

.NTSfrom Whatis-Extensions

Tutorial (Norton)

.NTXfrom Whatis-Extensions

Index file (CA-Clipper)

.NUF

Message for new users (1st call) (Procomm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NWCfrom Whatis-Extensions

Song file (Noteworthy Composer)

.NWSfrom Whatis-Extensions

News message (MIME RFC822) (Microsoft Outlook Express)

.NXTfrom Whatis-Extensions

Sound file (NeXT)

.Ofrom Whatis-Extensions

Object file (Atari)

.Ofrom Whatis-Extensions

Object file (GCC)

.Ofrom Whatis-Extensions

Object file (Unix)

.O$$from Whatis-Extensions

Outfile (Sprint)

.OAS

Word processor document (Fujitsu OAS)(Japanese) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OAZfrom Whatis-Extensions

Fax (NetFax Manager)

.OBfrom Whatis-Extensions

Object cut/paste file (IBM LinkWay)

.OBDfrom Whatis-Extensions

Binder (Microsoft Office)

.OBDfrom Whatis-Extensions

Binder template (Microsoft Office)

.OBJfrom Whatis-Extensions

Object file

.OBRfrom Whatis-Extensions

Object browser data file (Borland C++)

.OBSfrom Whatis-Extensions

Script (ObjectScript)

.OBVfrom Whatis-Extensions

Visual interface (ObjectScript)

.OBZfrom Whatis-Extensions

Binder Wizard (Microsoft Office)

.OCFfrom Whatis-Extensions

Object craft file (Object Craft)

.OCR

Transcribed fax-to-text file (FAXGrabber) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.ODLfrom Whatis-Extensions

Type library source (Visual C++)

.ODSfrom Whatis-Extensions

Mailbox file (Microsoft Outlook Express)

.OFDfrom Whatis-Extensions

Form definition (ObjectView)

.OFFfrom Whatis-Extensions

Object File (3D Mesh)

.OFNfrom Whatis-Extensions

FileNew file (Microsoft Office)

.OFTfrom Whatis-Extensions

Template (Microsoft Outlook)

.OKR

Feldeinteilung module file (3-D Fassade Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OKTfrom Whatis-Extensions

Music module (MOD) (Oktalyzer)

.OLBfrom Whatis-Extensions

Object Library (OLE) (Microsoft)

.OLBfrom Whatis-Extensions

Object library (VAX)

.OLDfrom Whatis-Extensions

Backup file (Generic)

.OLEfrom Whatis-Extensions

<http://searchWin2000.techtarget.com/sDefinition/ 0,,sid1_gci214126,00.html> Object Linking and Embedding (OLE) custom control (Microsoft)

.OLEfrom Whatis-Extensions

<http://searchWin2000.techtarget.com/sDefinition/ 0,,sid1_gci214126,00.html> OLE object

.OLIfrom Whatis-Extensions

Text file (Olivetti)

.OO1from Whatis-Extensions

Voice file (Typhoon)

.OOGLfrom Whatis-Extensions

Object Oriented Graphics Library

.OOMfrom Whatis-Extensions

Swap file (Shroom)

.OPJfrom Whatis-Extensions

Project file (Orcad Schematic Capture)

.OPLfrom Whatis-Extensions

Organiser Programming Language source file (Psion/Symbian)

.OPNfrom Whatis-Extensions

Active options (Exact)

.OPOfrom Whatis-Extensions

Output executable file (OPL)

.OPTfrom Whatis-Extensions

Developer Studio file (Microsoft)

.OPTfrom Whatis-Extensions

Optimize support file (QEMM)

.OPW

Organization chart (Org Plus for Windows) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.OPXfrom Whatis-Extensions

Extension DLL (OPL)

.OPXfrom Whatis-Extensions

Inactive options (Exact)

.OR2from Whatis-Extensions

Calendar file (Lotus Organizer 2)

.OR3from Whatis-Extensions

Lotus Organizer 97 file

.ORAfrom Whatis-Extensions

Configuration file (Oracle 7)

.ORAfrom Whatis-Extensions

Parameter file (Oracle)

.ORCfrom Whatis-Extensions

Script (Oracle 7)

.ORGfrom Whatis-Extensions

Calendar file (Lotus Organizer)

.OSSfrom Whatis-Extensions

Search file (Microsoft Office)

.OST

Offline file (Microsoft Exchange/Outlook) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.OTL

Outline font description (Z-Soft Type Foundry) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OTLfrom Whatis-Extensions

Template file (PrintMaster Gold)

.OTLfrom Whatis-Extensions

Template file (Super NoteTab) (Fookes)

.OTXfrom Whatis-Extensions

Text file (Olivetti Olitext Plus)

.OUTfrom Whatis-Extensions

Output file (Microsoft C)

.OVfrom Whatis-Extensions

Database file (Revelation-DOS)

.OV1from Whatis-Extensions

Overlay file

.OV2from Whatis-Extensions

Overlay file

.OVDfrom Whatis-Extensions

Datafile (ObjectVision)

.OVLfrom Whatis-Extensions

Overlay file

.OVRfrom Whatis-Extensions

Overlay file

.Pfrom Whatis-Extensions

Application parameter file (ReaGeniX code generator)

.Pfrom Whatis-Extensions

Picture file (APPLAUSE)

.Pfrom Whatis-Extensions

Source code (Pascal)

.P10from Whatis-Extensions

Plot 10 drawing (Tektronics)

.P16from Whatis-Extensions

16 Channel Music file (ProTracker 16)

.P22from Whatis-Extensions

Patch file (Patch 22)

.P3from Whatis-Extensions

Project Planner file (Primavera)

.P65from Whatis-Extensions

Document file (PageMaker 6.0)

.P7Cfrom Whatis-Extensions

Digital ID file (MIME)

.PA1from Whatis-Extensions

Worktable (PageAhead)

.PABfrom Whatis-Extensions

Personal Address Book (Microsoft)

.PACfrom Whatis-Extensions

Image (Stad)

.PACfrom Whatis-Extensions

Package file (Sound Blaster Studio II)

.PADfrom Whatis-Extensions

Keypad definition (Telemate)

.PAKfrom Whatis-Extensions

Compressed archive (PAK)

.PAKfrom Whatis-Extensions

WAD <http://WhatIs.techtarget.com/definition/0,,sid9_gci213332,00.html> file (Quake)

.PALfrom Whatis-Extensions

A compressed file (Generic)

.PALfrom Whatis-Extensions

Color palette (Microsoft)

.PANfrom Whatis-Extensions

Printer specific file (CorelDRAW)

.PAQ

Password encrypted zip file (Hewlett-Packard) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PARfrom Whatis-Extensions

Parameter file (Fractint)

.PARfrom Whatis-Extensions

Parts application (Digitalk PARTS)

.PAR

Permanent output file (Microsoft Windows 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PASfrom Whatis-Extensions

Source code file (Borland Pascal)

.PAT

exePatch utility used for Warcraft2 (WarHack) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PATfrom Whatis-Extensions

Hatch pattern file (DataCAD)

.PATfrom Whatis-Extensions

Patch file (Advanced Gravis Ultrasound/Forte Technologies)

.PATfrom Whatis-Extensions

Pattern file (CorelDRAW)

.patternfrom Whatis-Extensions

colors

.PBfrom Whatis-Extensions

Fax (FAXability Plus)

.PBfrom Whatis-Extensions

Phone book (WinFax Pro)

.PBfrom Whatis-Extensions

Setup file (PixBase)

.PB1from Whatis-Extensions

Document (First Publisher for Windows)

.PBA

Source code file (Powerbasic BASIC) (Genus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PBDfrom Whatis-Extensions

Dynamic library, an alternative to a native <http:// searchVB.techtarget.com/sDefinition/0,,sid8_gci212624,00.html> DLL <http: //searchWin2000.techtarget.com/sDefinition/0,,sid1_gci213902,00.html> (PowerBuilder)

.PBDfrom Whatis-Extensions

Phone book (FaxNOW!-Faxit)

.PBFfrom Whatis-Extensions

Turtle Beach Pinnacle Bank File

.PBIfrom Whatis-Extensions

Include file (PowerBasic) (Genus)

.PBIfrom Whatis-Extensions

Profiler binary input file (Microsoft Source Profiler)

.PBKfrom Whatis-Extensions

Microsoft Phonebook

.PBLfrom Whatis-Extensions

Library file used in a development environment (PowerBuilder)

.PBLfrom Whatis-Extensions

PowerBasic library (Genus)

.pbmfrom Rute-Users-Guide

PBM image file format.

.PBMfrom Whatis-Extensions

Planar bitmap graphic (XLib)

.PBMfrom Whatis-Extensions

Portable bitmap graphic

.PBOfrom Whatis-Extensions

Profiler binary output (Microsoft Source Profiler)

.PBRfrom Whatis-Extensions

Resource file (PowerBuilder)

.PBT

Profiler binary table (Microsoft Source Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCfrom Whatis-Extensions

Text file (IBM)

.PC3from Whatis-Extensions

Custom palette (Harvard Graphics 3.0)

.PC8

Ascii text IBM8 character set (NewWave Write) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCB

Application data file (Microsoft Powerpoint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCC

Cutout picture vector graphics (PC Paintbrush) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCDfrom Whatis-Extensions

Image (Kodak Photo-CD)

.PCDfrom Whatis-Extensions

P-Code compiled test scripts as in Microsoft Test and Microsoft Visual Test

.PCE

Maps Eudora mailbox names to DOS filenames From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.pcffrom Rute-Users-Guide

PCF image file--intermediate representation for fonts. X Window System font.

.PCF

Profiler command file (Microsoft Source Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCHfrom Whatis-Extensions

Patch file (Generic)

.PCH

Precompiled header file (Microsoft C/C++) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.PCI

PCI Miniport file (Microsoft Windows System file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCJfrom Whatis-Extensions

Multimedia authoring tool graphics (IBM Linkaway-Live)

.PCKfrom Whatis-Extensions

Pickfile (Turbo Pascal)

.PCLfrom Whatis-Extensions

<http://WhatIs.techtarget.com/definition/0,,sid9_gci214283,00.html>

.PCMfrom Whatis-Extensions

Audio file

.PCMfrom Whatis-Extensions

PCM file (OKI MSM6376 Sythesizer Chip)

.PCPfrom Whatis-Extensions

Live Update Pro file (Symantec)

.PCSfrom Whatis-Extensions

Animation (PICS)

.PCSfrom Whatis-Extensions

Picture storage file (Microsoft)

.PCTfrom Whatis-Extensions

PICT drawing (Macintosh)

.PCWfrom Whatis-Extensions

Text file (PC Write)

.PCXfrom Whatis-Extensions

PC Paintbrush bitmap (ZSoft)

.pcxfrom Rute-Users-Guide

PCX image file.

.PDAfrom Whatis-Extensions

Bitmap graphics

.PDBfrom Whatis-Extensions

Data file (TACT)

.PDBfrom Whatis-Extensions

Database file (3Com PalmPilot)

.PDB

Physical model backup file (PowerDesigner) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.PDDfrom Whatis-Extensions

Graphic image that can be opened with Paint Shop Pro and Adobe PhotoDeluxe

.PDFfrom Whatis-Extensions

<http://searchMobileComputing.techtarget.com/sDefinition/ 0,,sid40_gci214288,00.html> Portable Document file (Adobe Acrobat) (displayable with a Web browser)

.PDFfrom Whatis-Extensions

Definition File

.pdf

Formatted document similar to PostScript or dvi. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDFfrom Whatis-Extensions

Graphics file (ED-SCAN 24bit)

.PDFfrom Whatis-Extensions

Printer Definition File (Netware)

.PDL

Project description language file (Borland C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDMfrom Whatis-Extensions

Physical model file (PowerDesigner)

.PDPfrom Whatis-Extensions

Print Shop Deluxe file (Broderbund)

.PDQ

Flowcharting PDQ Lite file (Patton&Patton) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.PDS

Hardware assembly source code file (Pldasm) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDSfrom Whatis-Extensions

Photographic image file (origin not yet identified)

.PDTfrom Whatis-Extensions

Database file (ProCite)

.PDVfrom Whatis-Extensions

Printer driver (Paintbrush)

.PDWfrom Whatis-Extensions

Document (Professional Draw)

.PDXfrom Whatis-Extensions

Database index file (ProCite)

.PE3from Whatis-Extensions

Image archive file (QuickViewer)

.PE3from Whatis-Extensions

Image archive file (Ulead PhotoImpact)

.PE4

Image archive file (Ulead PhotoImpact v.4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PEBfrom Whatis-Extensions

Program Editor bottom overflow file (WordPerfect for Windows Library)

.PEDfrom Whatis-Extensions

Program Editor delete save file (WordPerfect for Windows)

.PEMfrom Whatis-Extensions

Program Editor macro (WordPerfect for Windows library)

.PEQfrom Whatis-Extensions

Program Editor print queue file (WordPerfect for Windows)

.PERfrom Whatis-Extensions

Program Editor resident area file (WordPerfect for Windows Library)

.PESfrom Whatis-Extensions

Program Editor work space file (WordPerfect for Windows Library)

.PETfrom Whatis-Extensions

Program Editor top overflow file (WordPerfect for Windows Library)

.PFfrom Whatis-Extensions

Encrypted file (Alladin Systems)

.PFAfrom Whatis-Extensions

Type 3 font (ASCII)

.PFBfrom Whatis-Extensions

Type 1 font (binary)

.pfbfrom Rute-Users-Guide

X Window System font file.

.PFCfrom Whatis-Extensions

Personal filing cabinet file (AOL)

.PFCfrom Whatis-Extensions

PF Component file

.PFCfrom Whatis-Extensions

Text file (First Choice)

.PFFfrom Whatis-Extensions

Paraform file for 3D modeling (Scandata)

.PFKfrom Whatis-Extensions

Programmable function keys (XTreePro)

.PFMfrom Whatis-Extensions

Printer Font Metrics (Microsoft)

.PFSfrom Whatis-Extensions

Database text file (PFS:Write)

.PFTfrom Whatis-Extensions

Printer font (ChiWriter)

.PGfrom Whatis-Extensions

Page cut/paste file (IBM LinkWay)

.PGIfrom Whatis-Extensions

Printer graphics file device driver (PGRAPH Library)

.PGLfrom Whatis-Extensions

Plotter drawing (Hewlett-Packard)

.PGMfrom Whatis-Extensions

Portable Graymap (bitmap)

.PGMfrom Whatis-Extensions

Program file (Signature)

.PGNfrom Whatis-Extensions

Portable game notation file (ChessMaster and others)

.PGPfrom Whatis-Extensions

PGP encrypted file

.PGSfrom Whatis-Extensions

Manual page (man4dos)

.PHfrom Whatis-Extensions

Optimized .goh file (Geoworks)

.PHfrom Whatis-Extensions

Perl header file

.PHfrom Whatis-Extensions

Phrase-table (Microsoft C/C++)

.PHfrom Whatis-Extensions

Temporary file generated by Microsoft Help Compiler

.PHNfrom Whatis-Extensions

Phone list (QmodemPro)

.PHNfrom Whatis-Extensions

Phone list (UltraFax)

.PHOfrom Whatis-Extensions

Phone database (Metz Phone for Windows)

.PHPfrom Whatis-Extensions

<http://searchEnterpriseLinux.techtarget.com/sDefinition/ 0,,sid39_gci334246,00.html> HTML page that includes a PHP <http:// searchEnterpriseLinux.techtarget.com/sDefinition/ 0,,sid39_gci334246,00.html> script

.phpfrom Rute-Users-Guide

PHP program source code (used for web page design).

.PHP3from Whatis-Extensions

HTML page that includes a PHP <http:// searchEnterpriseLinux.techtarget.com/sDefinition/ 0,,sid39_gci334246,00.html> script

.PHRfrom Whatis-Extensions

Phrases (LocoScript)

.PHTMLfrom Whatis-Extensions

HTML page that includes a PHP <http:// searchEnterpriseLinux.techtarget.com/sDefinition/ 0,,sid39_gci334246,00.html> script

.PHTMLfrom Whatis-Extensions

perl <http://searchEnterpriseLinux.techtarget.com/sDefinition/ 0,,sid39_gci214291,00.html>-parsed HTML

.PI1

Low resolution picture file (Dages Elite) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.PI2

Medium resolution picture file (Dages Elite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PI3

High resolution picture file (Dages Elite) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.PICfrom Whatis-Extensions

3D Image file (SoftImage)

.PICfrom Whatis-Extensions

Bitmap (PC Paint)

.PICfrom Whatis-Extensions

PICT drawing (Macintosh)

.PICfrom Whatis-Extensions

Picture file (Lotus)

.PICfrom Whatis-Extensions

Pixar picture file (SDSC Image Tool)

.PICTfrom Whatis-Extensions

PICT image file (Macintosh)

.PIFfrom Whatis-Extensions

Compressed archive (Macintosh)

.PIFfrom Whatis-Extensions

PIF drawing (IBM)

.PIFfrom Whatis-Extensions

Program Information File

.PIFfrom Whatis-Extensions

Vector graphics GDF file (IBM Mainframe)

.PIGfrom Whatis-Extensions

WAD file (Lucas Arts Dark Forces <http://WhatIs.techtarget.com/ definition/0,,sid9_gci213332,00.html>)

.PINfrom Whatis-Extensions

Data file (Epic Pinball)

.PINfrom Whatis-Extensions

Data file (Epic Pinball)

.PIXfrom Whatis-Extensions

Alias image file (SDSC Image Tool)

.PIXfrom Whatis-Extensions

Bitmap (Inset Systems)

.PJfrom Whatis-Extensions

Project file (CA-SuperProject)

.PJfrom Whatis-Extensions

Source Integrity file (MKS)

.PJTfrom Whatis-Extensions

Visual FoxPro memo file (Microsoft)

.PJTfrom Whatis-Extensions

Visual Foxpro Project (Microsoft)

.PJXfrom Whatis-Extensions

Visual FoxPro project file (Microsoft)

.PKfrom Whatis-Extensions

Packed bitmap font file (TeX DVI)

.PKAfrom Whatis-Extensions

Compressed file archive (PKARC)

.PKGfrom Whatis-Extensions

Developer Studio application extension (similar to a DLL file) (Microsoft)

.PKGfrom Whatis-Extensions

Installer script (NEXT)

.PKRfrom Whatis-Extensions

Public Keyring (PGP)

.PKTfrom Whatis-Extensions

Packet file (Fidonet)

.PL

Interleaf printerleaf (or WorldView) format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PLfrom Whatis-Extensions

Palette (Harvard Graphics)

.plfrom Rute-Users-Guide

Perl or Prolog program source code.

.PLfrom Whatis-Extensions

Property list font metric file (TeX)

.PLfrom Whatis-Extensions

Source code file (Perl)

.PLfrom Whatis-Extensions

Source code file (Prolog)

.PL1from Whatis-Extensions

Room plan (3D Home Architect)

.PL3from Whatis-Extensions

Chart palette (Harvard Graphics 3.0)

.PLBfrom Whatis-Extensions

Library file (Microsoft FoxPro)

.PLCfrom Whatis-Extensions

Add-in file (Lotus 1-2-3)

.PLGfrom Whatis-Extensions

A format use by REND386/AVRIL

.PLIfrom Whatis-Extensions

Data description file (Oracle 7)

.PLLfrom Whatis-Extensions

Pre-linked library file (Clipper 5)

.PLMfrom Whatis-Extensions

Module (DisorderTracker2)

.PLNfrom Whatis-Extensions

Spreadsheet (WordPerfect for Windows)

.PLRfrom Whatis-Extensions

Pilot file (Descent 1-3)

.PLSfrom Whatis-Extensions

MPEG PLayList file (used by WinAmp)

.PLSfrom Whatis-Extensions

Sample file (DisorderTracker2)

.PLTfrom Whatis-Extensions

Drawing (HPGL Plotter)

.PLTfrom Whatis-Extensions

Palette (Generic)

.PLTfrom Whatis-Extensions

Plot drawing (AutoCAD)

.PLTfrom Whatis-Extensions

Pre-linked transfer file (Clipper 5)

.PLTfrom Whatis-Extensions

Sign-making software (Gerber Optical)

.PLYfrom Whatis-Extensions

Data file (PopMail)

.PLYfrom Whatis-Extensions

Presentation screen (Harvard Spotlight)

.PMfrom Whatis-Extensions

Bitmap graphics (Presentation Manager)

.PMfrom Whatis-Extensions

Module (Perl)

.PM3from Whatis-Extensions

Document (PageMaker 3.0)

.PM4from Whatis-Extensions

Document (PageMaker 4.0)

.PM5from Whatis-Extensions

Document (PageMaker 5.0)

.PM6from Whatis-Extensions

Document (PageMaker 6.0)

.PMCfrom Whatis-Extensions

Graphics (A4TECH Scanner)

.PMMfrom Whatis-Extensions

Program file (Amaris BTX/2)

.PN3

Printer device driver (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PNGfrom Whatis-Extensions

<http://searchWebServices.techtarget.com/sDefinition/ 0,,sid26_gci214307,00.html> Bitmap (Portable Network Graphics)

.PNGfrom Whatis-Extensions

Bitmap file (MacroMedia FireWorks)

.PNGfrom Whatis-Extensions

Browser catalogue (Paint Shop Pro)

.PNMfrom Whatis-Extensions

Portable aNY Map graphics (PBM)

.PNTfrom Whatis-Extensions

Graphic file (MacPaint)

.PNTfrom Whatis-Extensions

Pen Table plotting file (Pro/Engineer)

.PNTfrom Whatis-Extensions

QWK reader pointer file (MarkMail 2.x)

.PNTGfrom Whatis-Extensions

Same as PNT file

.POGfrom Whatis-Extensions

PIG file extension (Descent2)

.POHfrom Whatis-Extensions

Optimized .goh file (Geoworks)

.POLfrom Whatis-Extensions

3D polygonal modeling file (Innovmetric)

.POLfrom Whatis-Extensions

Windows NT <http://searchWin2000.techtarget.com/sDefinition/ 0,,sid1_gci213368,00.html> Policy file

.POPfrom Whatis-Extensions

Message index (PopMail)

.POPfrom Whatis-Extensions

Popup file (Visual dBase)

.POTfrom Whatis-Extensions

PowerPoint template (Microsoft)

.POVfrom Whatis-Extensions

Persistence of Vision file (Ray-Tracer)

.POWfrom Whatis-Extensions

Chord chart (PowerChords)

.PPfrom Whatis-Extensions

Compressed Amiga archive (POWERPACKER)

.PP4from Whatis-Extensions

Bitmap (Picture Publisher 4)

.PPAfrom Whatis-Extensions

PowerPoint Add-in (Microsoft)

.PPBfrom Whatis-Extensions

Button bar for print preview (WordPerfect for Windows)

.PPDfrom Whatis-Extensions

PostScript Printer definition file specification (Adobe Acrobat v.4.0)

.PPFfrom Whatis-Extensions

Pinnacle Program File (Turtle Beach)

.PPIfrom Whatis-Extensions

Graphics file (Microsoft PowerPoint)

.PPLfrom Whatis-Extensions

PolaroidPalettePlus ColorKey device driver (Harvard Graphics 3.0)

.PPMfrom Whatis-Extensions

Portable Pixelmap bitmap

.PPOfrom Whatis-Extensions

Pre-processed output file (Clipper 5)

.PPPfrom Whatis-Extensions

Desktop publishing default output file (Serif PagePlus)

.PPPfrom Whatis-Extensions

Document or finished project (Parson Power Publisher)

.PPSfrom Whatis-Extensions

PowerPoint slide show (Microsoft)

.PPSfrom Whatis-Extensions

Storyboard (Personal Producer)

.PPTfrom Whatis-Extensions

PowerPoint presentation (Microsoft)

.PQB

Master boot backup file (PowerQuest BootMagic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PQIfrom Whatis-Extensions

Drive image file (PowerQuest)

.PR2from Whatis-Extensions

Presentation (Aldus Persuasion 2.x)

.PR2from Whatis-Extensions

Printer driver (dBase IV)

.PR3from Whatis-Extensions

Postscript printer driver (dBase IV)

.PR3from Whatis-Extensions

Presentation (Aldus Persuasion 3.x)

.PRC

Resource (text or program) file (3com PalmPilot) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRDfrom Whatis-Extensions

Printer driver (Generic)

.PREfrom Whatis-Extensions

Presentation (Lotus Freelance)

.PREfrom Whatis-Extensions

Settings (Microsoft C/C++)

.PREfrom Whatis-Extensions

Settings (Programmer's WorkBench)

.PRFfrom Whatis-Extensions

Output file (Profiler)

.PRF

Pixel Run Format graphics (Improces-Fastgraph) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRFfrom Whatis-Extensions

Printer driver (dBase IV)

.PRFfrom Whatis-Extensions

Settings file (Macromedia Director)

.PRFfrom Whatis-Extensions

System file (Microsoft Windows)

.PRGfrom Whatis-Extensions

Program file (WAVmaker)

.PRGfrom Whatis-Extensions

Program source files (Atari)

.PRGfrom Whatis-Extensions

Program source files (dBase IV, Clipper 5, and Microsoft FoxPro)

.PRIfrom Whatis-Extensions

Printer definitions (LocoScript)

.Printerfrom Whatis-Extensions

Control Language file (printer-ready bitmap) (Hewlett-Packard)

.PRJfrom Whatis-Extensions

Project file (3D Studio) (DOS)

.PRMfrom Whatis-Extensions

Parameter file (Generic)

.PRNfrom Whatis-Extensions

Print Table (space delimited text)

.PRNfrom Whatis-Extensions

Printer driver (Signature)

.PRNfrom Whatis-Extensions

Text file (Lotus 1-2-3-Symphony)

.PRNfrom Whatis-Extensions

Windows Printer file (DataCAD)

.PROfrom Whatis-Extensions

Configuration file (Pro/Engineer)

.PROfrom Whatis-Extensions

Graphics profile file (DOS)

.PROfrom Whatis-Extensions

Project file (Terramodel)

.PROfrom Whatis-Extensions

Source code file (Prolog)

.PRPfrom Whatis-Extensions

Data conversion saved project file (Oberon Prospero)

.PRS

Presentation file (Harvard Graphics for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRSfrom Whatis-Extensions

Printer resource font file (WordPerfect for Windows)

.PRSfrom Whatis-Extensions

Procedure file (dBase IV)

.PRTfrom Whatis-Extensions

A print-formatted file

.PRTfrom Whatis-Extensions

Part file (CADkey)

.PRTfrom Whatis-Extensions

Part file (Pro/Engineer)

.PRTfrom Whatis-Extensions

Printer driver (Dr. Halo)

.PRV

Internet provider template file (psiMail) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.PRXfrom Whatis-Extensions

Compiled program (Microsoft FoxPro)

.PRZfrom Whatis-Extensions

Graphics file (Lotus Freelance 97)

.PSfrom Whatis-Extensions

Postscript <http://WhatIs.techtarget.com/definition/ 0,,sid9_gci212814,00.html>-formatted file (a Postscript printer-ready file)

.psfrom Rute-Users-Guide

PostScript file, for printing or viewing.

.PSBfrom Whatis-Extensions

Sound Bank file (Pinnacle)

.PSDfrom Whatis-Extensions

Bitmap (Adobe Photoshop)

.PSE

Bitmap graphics (IBM printer Page SEgment) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.PSF

Outline PostScript printer font (ChiWriter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PSIfrom Whatis-Extensions

A-law audio file (psion)

.PSMfrom Whatis-Extensions

Sound data file (Epic Pinball)

.PSMfrom Whatis-Extensions

Studio module (ProTracker)

.PSMfrom Whatis-Extensions

Symbol table of IDE (Turbo Pascal)

.PSPfrom Whatis-Extensions

Image file (PaintShop Pro)

.PSPfrom Whatis-Extensions

Procedure (Prodea Synergy)

.PSRfrom Whatis-Extensions

Report file (PowerSoft)

.PSTfrom Whatis-Extensions

Personal Folder File (Microsoft Outlook)

.PT3from Whatis-Extensions

Device driver (Harvard Graphics 3.0)

.PT3from Whatis-Extensions

Template (PageMaker 3.0)

.PT4from Whatis-Extensions

Template (PageMaker 4.0)

.PTBfrom Whatis-Extensions

Script file (PubTech BatchWorks)

.PTBfrom Whatis-Extensions

Table file (Pro/Engineer)

.PTDfrom Whatis-Extensions

Table file (Pro/ENGINEER)

.PTLfrom Whatis-Extensions

Petal file (ASCII version of Microsoft Visual Modeler)

.PTMfrom Whatis-Extensions

Macro (PubTech BatchWorks)

.PTMfrom Whatis-Extensions

Music module (MOD) (Polytracker)

.PTRfrom Whatis-Extensions

QWK reader pointer file (QMail)

.PUBfrom Whatis-Extensions

Document (Microsoft Publisher)

.PUBfrom Whatis-Extensions

Public key ring file (PGP)

.PUBfrom Whatis-Extensions

Publication (Ventura Publisher)

.PUDfrom Whatis-Extensions

Map file (WarCraftII)

.PUTfrom Whatis-Extensions

Compressed archive (PUT)

.PVDfrom Whatis-Extensions

Script file (Instalit)

.PVLfrom Whatis-Extensions

Library file (Instalit)

.PVTfrom Whatis-Extensions

Local pointlist (Fidonet)

.PWfrom Whatis-Extensions

Text file (Professional Write)

.PWDfrom Whatis-Extensions

Word document (Microsoft Pocket)

.PWL

Password list file (Microsoft Windows 9.x) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.PWPfrom Whatis-Extensions

Image file (a roll of film viewed using Photoworks)

.PWPfrom Whatis-Extensions

Text document (Professional WritePlus)

.PWZfrom Whatis-Extensions

PowerPoint wizard (Microsoft)

.PXfrom Whatis-Extensions

Primary database index (Paradox)

.PXLfrom Whatis-Extensions

Pocket Excel spreadsheet (Microsoft)

.PYfrom Whatis-Extensions

python <http://searchEnterpriseLinux.techtarget.com/sDefinition/ 0,,sid39_gci213538,00.html> Script file

.pyfrom Rute-Users-Guide

Python program source code.

.PYfrom Whatis-Extensions

Saved emessages (YAHOO)

.PYC

python <http://searchEnterpriseLinux.techtarget.com/sDefinition/ 0,,sid39_gci213538,00.html> Compiled script file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PZDfrom Whatis-Extensions

Default settings (Pizazz Plus)

.PZOfrom Whatis-Extensions

Overlay file (Pizazz Plus)

.PZPfrom Whatis-Extensions

Palette (Pizazz Plus)

.PZSfrom Whatis-Extensions

Settings (Pizazz Plus)

.PZTfrom Whatis-Extensions

Transfer file (Pizazz Plus)

.PZXfrom Whatis-Extensions

Swap file (Pizazz Plus)

.QADfrom Whatis-Extensions

Document (PF QuickArt)

.QAG

Quick Access Group data file (Norton Desktop) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QAPfrom Whatis-Extensions

Application file (Omnis Quartz)

.QBEfrom Whatis-Extensions

Saved query (dBase IV)

.QBEfrom Whatis-Extensions

Saved Query (Quattro Pro)

.QBOfrom Whatis-Extensions

Compiled query (dBase IV)

.QBSfrom Whatis-Extensions

Program file (Microsoft QuickBasic)

.QBW

Spreadsheet data (QuickBooks for Windows) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.QCPfrom Whatis-Extensions

Voice file (Qualcomm Pure Voice)

.QD0from Whatis-Extensions

Data file-segment 10 (Omnis Quartz)

.QD1from Whatis-Extensions

Data file segment 1 (Omnis Quartz)

.QD2from Whatis-Extensions

Data file segment 2 (Omnis Quartz)

.QD3from Whatis-Extensions

Data file segment 3 (Omnis Quartz)

.QD3Dfrom Whatis-Extensions

QuickDraw 3D Metafile (Apple)

.QD4from Whatis-Extensions

Data file segment 4 (Omnis Quartz)

.QD5from Whatis-Extensions

Data file segment 5 (Omnis Quartz)

.QD6from Whatis-Extensions

Data file segment 6 (Omnis Quartz)

.QD7from Whatis-Extensions

Data file segmnet 7 (Omnis Quartz)

.QD8from Whatis-Extensions

Data file segment 8 (Omnis Quartz)

.QD9from Whatis-Extensions

Data file segment 9 (Omnis Quartz)

.QDFfrom Whatis-Extensions

Data file (Quicken)

.QDKfrom Whatis-Extensions

Backup of startup files (QEMM)

.QDTfrom the Quicken UK Accountancy/Tax/Invoice program (QuickBooks) From Whatis-Extensions

Data file

.QDVfrom Whatis-Extensions

Graphics file (Steve Blackstock Giffer)

.QEFfrom Whatis-Extensions

Query file (Microsoft Excel)

.QELfrom Whatis-Extensions

Electronic library file (Quicken)

.QFLfrom Whatis-Extensions

Document (FAMILY LAWYER)

.QFXfrom Whatis-Extensions

Fax (QuickLink)

.QICfrom Whatis-Extensions

Backup file (Microsoft)

.QIFfrom Whatis-Extensions

Image (MIME)(QuickTime)

.QIFfrom Whatis-Extensions

Import file (Quicken)

.QLBfrom Whatis-Extensions

Library file (Microsoft C/C++)

.QLBfrom Whatis-Extensions

Library file (Quick)

.QLCfrom Whatis-Extensions

Data (PostScript help file)

.QLPfrom Whatis-Extensions

Printer driver (QuickLink)

.QMfrom Whatis-Extensions

Motion file (Quality)

.QM4

Option or services file (QMail 4.x Mail Door) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QPR

Generated query program (Microsoft FoxPro) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.QPRfrom Whatis-Extensions

Print queue device driver (OS/2)

.QPX

Compiled query program (Microsoft FoxPro) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.QQT

Qardware definition file (Quick Qard Technology) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QRPfrom Whatis-Extensions

Report builder file (Centura)

.QRPfrom Whatis-Extensions

Report file (Liberty for Windows 2.0)

.QRSfrom Whatis-Extensions

Equation Editor support file (WordPerfect for Windows)

.QRTfrom Whatis-Extensions

QRT graphics file (Ray Tracer)

.QRYfrom Whatis-Extensions

Query (dBase IV)

.QRYfrom Whatis-Extensions

Query (Microsoft)

.QSDfrom Whatis-Extensions

Datafile (Quicken)

.QSTfrom Whatis-Extensions

Tab file (Quake Spy)

.QTfrom Whatis-Extensions

Movie file (QuickTime)

.QTIfrom Whatis-Extensions

Image file (QuickTime)

.QTIFfrom Whatis-Extensions

Image file (QuickTime)

.QTMfrom Whatis-Extensions

Movie file (QuickTime)

.QTPfrom Whatis-Extensions

Preferences file (QuickTime)

.QTSfrom Whatis-Extensions

Image file (QuickTime)

.QTSfrom Whatis-Extensions

PICT image file (Macintosh)

.QTXfrom Whatis-Extensions

Image file (QuickTime)

.QWfrom Whatis-Extensions

Write program file (Symantec Q&A)

.QWKfrom Whatis-Extensions

Message file (QWK Reader)

.QXDfrom Whatis-Extensions

Data file (Quark Xpress)

.QXLfrom Whatis-Extensions

Element library (Quark Xpress)

.QXTfrom Whatis-Extensions

Template file (Quark Xpress)

.Rfrom Whatis-Extensions

Ratfor file (FORTRAN Preprocessor)

.Rfrom Whatis-Extensions

Resource file (Pegasus Mail)

.R8from Whatis-Extensions

Raw graphics (One byte per pixel) plane one (PicLab)

.R8Pfrom Whatis-Extensions

Pcl 4 bitmap font (Intellifont)

.RAfrom Whatis-Extensions

Sound file (RealAudio)

.RADfrom Whatis-Extensions

Radar data file (Radar ViewPoint)

.RAMfrom Whatis-Extensions

Metafile (RealAudio)

.RAOfrom Whatis-Extensions

ReadAllOver (YOUniverse)

.RAR

RAR compressed archive (Eugene Roshall's format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RASfrom Whatis-Extensions

Bitmap (Sun Raster Images)

.RATfrom Whatis-Extensions

Datafile (RATS)

.RAWfrom Whatis-Extensions

Raw File Format (bitmap)

.RAWfrom Whatis-Extensions

Raw signed PCM data

.RAWfrom Whatis-Extensions

Raw signed PCM data

.RBFfrom Whatis-Extensions

Datafile (Rbase)

.RBHfrom Whatis-Extensions

Maintained by RoboHELP, the RBH file adds to the information contained in the Help project file

.RCfrom Whatis-Extensions

Configuration file (emacs)

.RCfrom Whatis-Extensions

Resource script (Borland C++)

.RCfrom Whatis-Extensions

Resource script (Micosoft C/C++)

.RCGfrom Whatis-Extensions

Newsgroup file (Netscape)

.RD1from Whatis-Extensions

Registered level file (Descent1)

.RDF

Compiled UIC source code (Geoworks UI Compiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RDFfrom Whatis-Extensions

Research document information format

.RDFfrom Whatis-Extensions

Resource Description Framework file (related to XML <http:// searchWebServices.techtarget.com/sDefinition/0,,sid26_gci213404,00.html> and metadata <http://searchDatabase.techtarget.com/sDefinition/ 0,,sid13_gci212555,00.html>)

.RDIfrom Whatis-Extensions

Device-independent bitmap file

.RDLfrom Whatis-Extensions

Registered Level file (Descent)

.RDXfrom Whatis-Extensions

Datafile (Reflex)

.RECfrom Whatis-Extensions

Datafile (EpiInfo)

.RECfrom Whatis-Extensions

Record file (Sprint)

.RECfrom Whatis-Extensions

Recorded macro (Microsoft Windows 3.x)

.RECfrom Whatis-Extensions

Voice file (RapidComm)

.REDfrom Whatis-Extensions

Path information file (Clarion Modula-2)

.REFfrom Whatis-Extensions

Reference file (Generic)

.REG

OLE registration file (Microsoft Windows 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.REGfrom Whatis-Extensions

Registration file (Corel)

.REGfrom Whatis-Extensions

Registration file

data files for multiple users of a small-scale PC application

.REMfrom Whatis-Extensions

Remarks file (Generic)

.REPfrom Whatis-Extensions

Reply file (QWK Reader)

.REPfrom Whatis-Extensions

Report file (CodeReporter)

.REPfrom Whatis-Extensions

Report file (DataBoss)

.REPfrom Whatis-Extensions

Report file (Report Designer)

.REPfrom Whatis-Extensions

Report file (Visual dBase)

.REQfrom Whatis-Extensions

Request file (Generic)

.RESfrom Whatis-Extensions

Compiled resource file (Borland C++)

.RESfrom Whatis-Extensions

Resource file (dBase IV)

.RESfrom Whatis-Extensions

Resource file (Microsoft Visual C++)

.REVfrom Whatis-Extensions

Revision file (GeoWorks)

.REXfrom Whatis-Extensions

Report definition (Oracle)

.REXfrom Whatis-Extensions

Source code file (REXX)

.REZfrom Whatis-Extensions

Resource file (Generic)

.RFfrom Whatis-Extensions

Raster graphics file (Sun)

.RFTfrom Whatis-Extensions

Revisable Form Text (part of IBM's DCA or Document Content Architecture)

.RGB,SGIfrom Whatis-Extensions

RGB files (Silicon Graphics)

.RGXfrom Whatis-Extensions

Symbol tables (ReaGeniX code generator)

.RHfrom Whatis-Extensions

Resource header file (Borland C++ 4.5)

.RIfrom Whatis-Extensions

Data file (Lotus 1-2-3)

.RIBfrom Whatis-Extensions

Graphics in Renderman format (3DReality)

.RICfrom Whatis-Extensions

Fax document (Ricoh)

.RIFfrom Whatis-Extensions

Image file (Metacreations Painter 5)

.RIF

RIFF bitmap graphics (Fractal Design Painter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RIPfrom Whatis-Extensions

Graphics (remote access)

.RIXfrom Whatis-Extensions

Bitmap graphics (ColorRIX VGA Paint)

.RL1from Whatis-Extensions

Regestered level file (Descent1)

.RL2from Whatis-Extensions

Registered level file (Descent2)

.RL4from Whatis-Extensions

Bitmap graphics file

.RL8from Whatis-Extensions

Bitmap graphics file

.RLAfrom Whatis-Extensions

Wavefront raster image (SDSC Image Tool)

.RLBfrom Whatis-Extensions

Data file (Harvard Graphics Win 9.x)

.RLCfrom Whatis-Extensions

Graphics file (1 bit per pixel scanner output file)

.RLE

Run-Length Encoded bitmap (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RLZfrom Whatis-Extensions

Realizer source code file (CA-Realizer)

.RMfrom Whatis-Extensions

Video file (RealAudio)

.RMDfrom Whatis-Extensions

Document (Microsoft RegMaid)

.RMFfrom Whatis-Extensions

Rich Map Format (used by 3-D game editors to store a map)

.RMFfrom Whatis-Extensions

Rich music format (Beatnik)

.RMIfrom Whatis-Extensions

MIDI music

.RMKfrom Whatis-Extensions

Makefile (Clipper RMake)

.RNfrom Whatis-Extensions

Xpl Program file (Nota Bene)

.RNDfrom Whatis-Extensions

Rendering slide (AutoCAD-AutoShade)

.RNOfrom Whatis-Extensions

Runoff file (VAX)

.ROLfrom Whatis-Extensions

FM music Adlib Music file (Roland)

.ROM

Cartridge-based home video game emulator file (exact copy of ROM contents in cartridges from Atari 2600, Colecovision, Sega, Nintendo, etc.; not interchangeable between emulators) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ROVfrom Whatis-Extensions

Data file (Rescue Rover)

.RPDfrom Whatis-Extensions

Database (RapidFire)

.RPLfrom Whatis-Extensions

Text document (Replica)

.RPLfrom Whatis-Extensions

Video file (Tomb Raider)

.RPMfrom Whatis-Extensions

Package Manager (RedHat Linux)

.rpmfrom Rute-Users-Guide

RedHat Package Manager rpm file.

.RPTfrom Whatis-Extensions

Crystal Reports file ( and a sub-set of Microsoft Visual Basic)

.RRSfrom Whatis-Extensions

Saved game file (Ace Road Rash)

.RSfrom Whatis-Extensions

Datafile (Amiga Resource Reassembler)

.RSBfrom Whatis-Extensions

Red Storm bitmap (Rainbow 6 (Game) and several image editing programs)

.RSCfrom Whatis-Extensions

Resource file (Generic)

.RSLfrom Whatis-Extensions

Paradox 7 reports (Broderland)

.RSMfrom Whatis-Extensions

Resume file (WinWay Resume Writer)

.RSPfrom Whatis-Extensions

Response file (Generic)

.RS_from Whatis-Extensions

Resourse fork file (Macintosh Mac-ette)

.RTFfrom Whatis-Extensions

<http://searchExchange.techtarget.com/sDefinition/ 0,,sid43_gci214276,00.html> Rich Text Format document

.RTFfrom Whatis-Extensions

Help file script (Microsoft Windows 9.x)

.RTKfrom Whatis-Extensions

Used by RoboHELP to simulate the search feature of Windows help

.RTLfrom Whatis-Extensions

Run Time library (NU 7.0)

.RTLfrom Whatis-Extensions

Text file (Generic)

.RTMfrom Whatis-Extensions

Music module (MOD) (Real Tracker)

.RTP

Software update package data file (RTpatch) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RTSfrom Whatis-Extensions

RoboHELP to speed complex operations

.RTSfrom Whatis-Extensions

RTSL document (RealAudio)

.RTSfrom Whatis-Extensions

Runtime library file (CA-Realizer)

.RULfrom Whatis-Extensions

Extension used in InstallShield

.RUNfrom Whatis-Extensions

Compiled output p-code file (Softworks basic compiler) (SoftworksLtd)

.RVP

Scan Configuration file (MIME) (Microsoft) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.RVWfrom Whatis-Extensions

Review file (Generic)

.RWS

Resource Workshop data file (Borland C++) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.RWXfrom Whatis-Extensions

Script file (RenderWare)

.RXXfrom a multi-volume archive (xx = a number from 01 to 99) From Whatis-Extensions

RAR compressed files

.Sfrom Whatis-Extensions

Assembler source code (Unix)

.Sfrom Whatis-Extensions

Source code file (Scheme)

.S$$from Whatis-Extensions

Temporary sort file (Sprint)

.S3Ifrom Whatis-Extensions

Instrument file (Scream Tracker v 3.0)

.S3M

16 channel music file (Scream Tracker v 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SAI

Encrypted video file (Integrated Sensors) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.SALfrom Whatis-Extensions

Datafile (SORITEC)

.SAMfrom Whatis-Extensions

Document (AMI Professional)

.SAMfrom Whatis-Extensions

Signed 8bit sample data file

.SARfrom Whatis-Extensions

Compressed archive (SAR)

.SAVfrom Whatis-Extensions

Backup file (Generic)

.SAVfrom Whatis-Extensions

Configuration file (Generic)

.SAVfrom Whatis-Extensions

Saved game file (Generic)

.SBfrom Whatis-Extensions

Raw Signed Byte (8bit) audio data

.SB!from Whatis-Extensions

Locking file (Superbase)

.SBDfrom Whatis-Extensions

Data definition file (Superbase)

.SBDfrom Whatis-Extensions

Storyboard data file (Storyboard Editor)

.SBFfrom Whatis-Extensions

File data (Superbase)

.SBI

Instrument file (Creative Labs SoundBlaster) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SBKfrom Whatis-Extensions

Bank file (Soundblaster)/EMU SoundFont v1.x (Creative Labs Soundfont 1.0)

.SBLfrom Whatis-Extensions

Flash object (ShockWave)

.SBPfrom Whatis-Extensions

Dml program file (Superbase 4)

.SBPfrom Whatis-Extensions

Program file (Superbase)

.SBQfrom Whatis-Extensions

Query definition file (Superbase)

.SBRfrom Whatis-Extensions

Support file (Source Browser)

.SBTfrom Whatis-Extensions

Notes related to record data (Superbase 4 for Windows)

.SBVfrom Whatis-Extensions

Form definition file (Superbase)

.SCfrom Whatis-Extensions

Display driver (Framework II)

.SCfrom Whatis-Extensions

Pal script (Paradox)

.SC2from Whatis-Extensions

SAS catalog (Windows 95/NT, OS/2, Mac)

.SC2from Whatis-Extensions

Schedule+ 7.0 file (Microsoft)

.SC3

Renamed dBase III screen mask file (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SC3from Whatis-Extensions

Saved game file (SIMM City 3000)

.SC3

Screen device driver (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SC4from Whatis-Extensions

Level file (Roller Coaster Tycoon)

.SCAfrom Whatis-Extensions

Datafile (SCA)

.SCCfrom Whatis-Extensions

Source Safe file (Microsoft)

.SCCfrom Whatis-Extensions

Text file (Generic)

.SCDfrom Whatis-Extensions

Datafile (Microsoft Schedule+ 7.0)

.SCDfrom Whatis-Extensions

Object description language graphics (Scodl Scan Conversion)

.SCDfrom Whatis-Extensions

Slide image (Matrix/Imapro SCODL)

.SCF

Command file (Microsoft Windows Explorer) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.SCFfrom Whatis-Extensions

Multimedia show (ScoreMaker)

.SCF

Spell checker configuration file (Symphony) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCHfrom Whatis-Extensions

Datafile (Microsoft Schedule+ 7.0)

.SCHfrom Whatis-Extensions

Schematics file (ORCAD)

.SCIfrom Whatis-Extensions

Fax document (SciFAX)

.SCIfrom Whatis-Extensions

Inspire native format (ScanVec)

.SCI

System configuration information file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCMfrom Whatis-Extensions

Scheme source code file (Generic)

.SCMfrom Whatis-Extensions

Video game console ROM emulater file

.SCNfrom Whatis-Extensions

Scene data file (TrueSpace2)

.SCNfrom Whatis-Extensions

Screen file (Kermit)

.SCOfrom Whatis-Extensions

High score file (Generic game file)

.SCPfrom Whatis-Extensions

Dial-Up Networking Script

.SCPfrom Whatis-Extensions

Script file (BITCOM)

.SCRfrom Whatis-Extensions

Debug source code (DOS Debug)

.SCRfrom Whatis-Extensions

Fax image (Generic)

.SCRfrom Whatis-Extensions

Screen font file (LocoScript)

.SCRfrom Whatis-Extensions

Screen snapshot file (dBase IV)

.SCRfrom Whatis-Extensions

Screen snapshot file (Procomm Plus)

.SCRfrom Whatis-Extensions

Screensaver file (Microsoft Windows 9.x)

.SCTfrom Whatis-Extensions

CT bitmap (Scitex)

.SCTfrom Whatis-Extensions

FoxPro forms (Microsoft)

.SCTfrom Whatis-Extensions

SAS catalog (Dos)

.SCT01from Whatis-Extensions

SAS catalog (Unix)

.SCVfrom Whatis-Extensions

CASmate Native format (ScanVec)

.SCXfrom Whatis-Extensions

Bitmap graphics (ColorRIX)

.SCXfrom Whatis-Extensions

Chart (Stanford Chart)

.SCXfrom Whatis-Extensions

FoxPro forms (Microsoft)

.SCXfrom Whatis-Extensions

Screen file (Microsoft FoxPro)

.SCYfrom Whatis-Extensions

Security file (ReaGeniX)

.SDfrom Whatis-Extensions

Audio (Sound Designer I)

.SD2

Flattened file/data fork (Sound Designer II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SD2from Whatis-Extensions

SAS database (Windows 95/NT OS/2, Mac)

.SDAfrom Whatis-Extensions

File archive description (Fidonet Software Distribution Network)

.SDCfrom Whatis-Extensions

Spreadsheet (Staroffice)(StarCalc)

.SDD

Presentation file (Staroffice)(Starimpress) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SDFfrom Whatis-Extensions

System Data File Format - legacy Unisys (Sperry) format

.SDI

Software distribution network information file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SDKfrom Whatis-Extensions

Floppy disk image (Roland)

.SDLfrom Whatis-Extensions

Library file (SmartDraw)

.SDN

Software distribution network compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SDPfrom Whatis-Extensions

Datafile (Cocreate SolidDesigner)

.SDPCfrom Whatis-Extensions

Datafile (Cocreate SolidDesigner)

.SDRfrom Whatis-Extensions

Drawing (SmartDraw)

.SDSfrom Whatis-Extensions

Raw Midi Sample Dump Standard file

.SDTfrom Whatis-Extensions

Template (SmartDraw)

.SDVfrom Whatis-Extensions

Semicolon Divided Values file

.SDWfrom Whatis-Extensions

Graphic file (Lotus WordPro)

.SDWfrom Whatis-Extensions

Raw Signed DWord (32bit) data

.SDX

Midi Sample Dump Standard files compacted by SDX From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SEAfrom Whatis-Extensions

Self-expanding archive (used by Stuffit for Mac files and possibly by others)

.SECfrom Whatis-Extensions

Secret key ring file (PGP)

.SEC

Secured animation file (Disney Animation Studio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SEDfrom Whatis-Extensions

Screen editor script files (SED)

.SELfrom Whatis-Extensions

Data file (Copy Books)

.SEPfrom Whatis-Extensions

Printer seperator page (Generic)

.SEPfrom Whatis-Extensions

Tagged Image File Format (TIFF) bitmap

.SEQfrom Whatis-Extensions

Animation file (Atari)

.SEQ

Sequential instruction file (Bubble Chamber) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SESfrom Whatis-Extensions

Session file (Cool Edit) (common digital audio editor file )

.SES

Session information file (Clarion Modula-2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SESSIONfrom Whatis-Extensions

Internet Security Scanner file (ISS)

.SETfrom Whatis-Extensions

Configuration file (1st Reader)

.SETfrom Whatis-Extensions

Install driver sets (Symphony)

.SETfrom Whatis-Extensions

Setup option file (Generic)

.SETfrom Whatis-Extensions

Voice set files (Quartet)

.SEWfrom Whatis-Extensions

Sewing program file (Generic)

.SFfrom Whatis-Extensions

SoundFile format (IrCam)

.SF

Wps attribute storage file (OS/2 WorkPlace Shell) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SF2from Whatis-Extensions

Bank file (Creative Labs Soundfont 2.0)(Soundblaster)

.SF2from Whatis-Extensions

SoundFont file (EMU version 2.0)

.SFDfrom Whatis-Extensions

Sound File Data (SoundStage)

.SFIfrom Whatis-Extensions

Graphics file (SIS Framegrabber)

.SFIfrom Whatis-Extensions

Printer font file (Hewlett-Packard Laser Jet Landscape)

.SFIfrom Whatis-Extensions

Printer font file (Ventura Publisher)

.SFIfrom Whatis-Extensions

Sound File Info (SoundStage)

.SFKfrom Whatis-Extensions

Sound file (Sonic Foundry)

.SFLfrom Whatis-Extensions

Pcl 4 bitmap font (Intellifont)

.SFLfrom Whatis-Extensions

Pcl 4 bitmap font (LandScape)

.SFLfrom Whatis-Extensions

Pcl 4 bitmap font (Ventura Publisher)

.SFNfrom Whatis-Extensions

Font file (SPX)

.SFPfrom Whatis-Extensions

Pcl bitmap font (Intellifont)

.SFPfrom Whatis-Extensions

Pcl bitmap font (Portrait)

.SFPfrom Whatis-Extensions

Pcl bitmap font (Ventura Publisher)

.SFRfrom Whatis-Extensions

Sample Resource (Sonic Foundry)

.SFSfrom Whatis-Extensions

Pcl 5 scalable font file (Intellifont)

.SFTfrom Whatis-Extensions

Screen font (ChiWriter)

.SFWfrom Whatis-Extensions

Mangled JPEG (Seattle Filmworks)

.SFXfrom Whatis-Extensions

Self-extracting archive (RAR)

.SGfrom Whatis-Extensions

Image file (SnapGraphix)

.SG1from Whatis-Extensions

Graphics file (Stanford Graphics)

.SGFfrom Whatis-Extensions

Document w/graphics (StarWriter)

.SGFfrom Whatis-Extensions

Graphics file (Sonique)

.SGIfrom Whatis-Extensions

Graphics file (IRIS)

.SGIfrom Whatis-Extensions

Graphics file (Silicon Graphics)

.SGMLfrom Whatis-Extensions

Standard Generalized Markup Language

.sgmlfrom Rute-Users-Guide

Standard Generalized Markup Language. Used to create documents to be converted to many different formats.

.SGPfrom Whatis-Extensions

Statistics file (STATGRAPHICS Plus)

.SGTfrom Whatis-Extensions

Save/Get keyboard macro (Signature)

.SHfrom Whatis-Extensions

ASCii archive (Unix/SHAR)

.sh

sh shell script. From Rute-Users-Guide It can be interpreted by any Bourne compatible shell. [http://www.tldp.org/LDP/Linux-Dictionary/html/ index.html] http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHfrom Whatis-Extensions

Shell script (Unix)

.SH3from Whatis-Extensions

Presentaion file (Harvard Graphics)

.SHBfrom Whatis-Extensions

Document shortcut file

.SHBfrom Whatis-Extensions

Presentation (Corel Show)

.SHGfrom Whatis-Extensions

Bitmap (HotSpot)

.SHKfrom Whatis-Extensions

Compressed Apple archive (SHRINKIT)

.SHK

Compressed archive (Arthurian Shrink Archiver) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHM

Shell macro (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHNfrom Whatis-Extensions

Audio compression file (Shorten)

.SHPfrom Whatis-Extensions

DOS shapes file (3D Studios)

.SHPfrom Whatis-Extensions

File format used by some programs for 3D modeling of multipart interactive triangle models

.SHPfrom Whatis-Extensions

Shapefile spatial data format (used by many GIS programs)

.SHPfrom Whatis-Extensions

Source code and shape file for text fonts (AutoCAD)

.SHRfrom Whatis-Extensions

File archive (Unix ASCii) (SHAR)

.SHSfrom Whatis-Extensions
Shell scrap file; reportedly used to send "password stealers"
.SHTML

HTML file containing Server Side Includes (SSI) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHWfrom Whatis-Extensions

Presentation (Corel Show)

.SHWfrom Whatis-Extensions

Presentation (Harvard Graphics 2.0)

.SHWfrom Whatis-Extensions

Slide Show (WordPerfect for Windows)

.SHXfrom Whatis-Extensions

Shape entities (AutoCAD)

.SHXfrom Whatis-Extensions

Shapefile spatial index file (ArcView)

.SIF

Setup installation files (Microsoft Windows NT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SIGfrom Whatis-Extensions

Current program settings (Signature)

.SIGfrom Whatis-Extensions

Signature file (PopMail)

.SIK

Backup files (Microsoft Word for Windows) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.SIKfrom Whatis-Extensions

Backup files (Sicherungskopie)

.SIT

Compressed archive of Mac files (Stuffit) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.SIZfrom Whatis-Extensions

Configuration file (Oracle 7)

.SKAfrom Whatis-Extensions

Secret Keyring file (PGP)

.SKFfrom Whatis-Extensions

Drawing file (AutoSketch)

.SKLfrom Whatis-Extensions

Resource file (Macromedia Director)

.SLfrom Whatis-Extensions

Save Layout extension (PACT)

.SLfrom Whatis-Extensions

Source code file (S-Lang)

.SLBfrom Whatis-Extensions

Slide Library File (AutoCAD)

.SLCfrom Whatis-Extensions

Compiled SALT script (Telix)

.SLDfrom Whatis-Extensions

Slide File (AutoCAD)

.SLIfrom Whatis-Extensions

Slide file (MAGICorp Slide Service)

.SLKfrom Whatis-Extensions

Symbolic link spreadsheet (SLYK)

.SLLfrom Whatis-Extensions

Sound data file (Generic)

.SLTfrom Whatis-Extensions

Script application language (SALT) (Telix script source)

.SMfrom Whatis-Extensions

Maillist (SoftSpoken Mailer)

.SMfrom Whatis-Extensions

Script file (ScriptMaker)

.SMfrom Whatis-Extensions

Source code file (Smalltalk)

.SMfrom Whatis-Extensions

Text file (Samna Word)

.SM3from Whatis-Extensions

Symbol file (DataCAD)

.SMDfrom Whatis-Extensions

Video game console ROM emulator file

.SMFfrom Whatis-Extensions

Fax document (SMARTFAX)

.SMKfrom Whatis-Extensions

Image file (Deer's Revenge)

.SMKfrom Whatis-Extensions

Image file (Nascar Racing '99)

.SMKfrom Whatis-Extensions

Image file (Smack Player)

.SMMfrom Whatis-Extensions

Macro (AMI Pro)

.SMPfrom Whatis-Extensions

Sample file (AdLib Gold)

.SMPfrom Whatis-Extensions

Samplevision format

.SMSfrom Whatis-Extensions

Emulator ROM image file (8-bit Sega Master System)

.SMTfrom Whatis-Extensions

SmartObject file (IconAuthor)

.SMTfrom Whatis-Extensions

Text file (Smart Ware II)

.SNDfrom Whatis-Extensions

Raw unsigned PCM data

.SNDfrom Whatis-Extensions

Sample (AKAI MPC)

.SNDfrom Whatis-Extensions

Sound file (NeXt)

.SNDfrom Whatis-Extensions

Sound resource (Macintosh)

.SNDRfrom Whatis-Extensions

Sound file (Sounder)

.SNDTfrom Whatis-Extensions

Sound file (SndTool)

.SNGfrom Whatis-Extensions

Midi song file (Midisoft Studio)

.SNGfrom Whatis-Extensions

Midi song file (Prism)

.SNMfrom Whatis-Extensions

Mailbox (mail folder) index (Netscape)

.SNOfrom Whatis-Extensions

Source code file (Snobol4)

.SNPfrom Whatis-Extensions

Output video file (Computer Eyes)

.SOfrom Whatis-Extensions

Shared library file (Unix)(equivalent to a Windows DLL)

.sofrom Rute-Users-Guide

Shared object file. lib*.so is a Dynamically Linked Library. [Executable program code shared by more than one program to save disk space and memory.]

.SOLfrom Whatis-Extensions

Solution file (Common used with game examples,tutorials)

.SOMfrom Whatis-Extensions

Network serial numbers (Quattro Pro)

.SOMfrom Whatis-Extensions

Sort information files (Paradox)

.SON

Song file (Creative Labs SoundBlaster Studio II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SOU

Sound file (Creative Labs SoundBlaster Studio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPfrom Whatis-Extensions

Compressed archive for Unix (Sprint)

.SP4from Whatis-Extensions

Saved game (Roller Coaster Tycoon)

.SPCfrom Whatis-Extensions

Program file (Microsoft MultiPlan)

.SPCfrom Whatis-Extensions

Temporary file (WordPerfect for Windows)

.SPDfrom Whatis-Extensions

Data file (Speech)

.SPDfrom Whatis-Extensions

Scalable font (Harvard Graphics 3.0)

.SPDfrom Whatis-Extensions

Scalable font (Speedo)

.spdfrom Rute-Users-Guide

Speedo X Window System font file.

.SPFfrom Whatis-Extensions

Slide presentation file (EnerGraphics)

.SPGfrom Whatis-Extensions

Glossary file (Sprint)

.SPIfrom Whatis-Extensions

Graphics file (Phillips Scanner)

.SPIfrom Whatis-Extensions

Graphics file (Siemens Scanner)

.SPLfrom Whatis-Extensions

Compressed archive (SPLINT)

.SPLfrom Whatis-Extensions

Customized printer driver (Sprint)

.SPLfrom Whatis-Extensions

Object file (ShockWave Flash)

.SPLfrom Whatis-Extensions

Personal spell dictionary (Signature)

.SPL

Printer spool file (Microsoft Windows 3.x) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.SPLfrom Whatis-Extensions

Sample file (DigiTracker)

.SPLfrom Whatis-Extensions

Sample file (Generic)

.SPMfrom Whatis-Extensions

Data file (WordPerfect for Windows)

.SPPfrom Whatis-Extensions

Printer file (Sprint)

.SPPACKfrom Whatis-Extensions

Sound sample (SP Pack)

.SPRfrom Whatis-Extensions

Document letter (Sprint)

.SPR

Generated screen program (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPRfrom Whatis-Extensions

Sprite (Image layering and resizing)

.SPRITEfrom Whatis-Extensions

Bitmap file (Acorn)

.SPSfrom Whatis-Extensions

Screen driver (Sprint)

.SPSfrom Whatis-Extensions

Spssx source code file (VAX/VMS)

.SPTfrom Whatis-Extensions

Source code file (Spitbol)

.SPTfrom Whatis-Extensions

Support file (MITAC disk/system management utility package)

.SPUfrom Whatis-Extensions

Picture file (Spectrum 512)

.SPWfrom Whatis-Extensions

Worksheet (SigmaPlot)

.SPX

Compiled screen program (Microsoft FoxPro) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.SQC

Structured Query Language (SQL) common code file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SQLfrom Whatis-Extensions

Generally used by database products as an extension for SQL queries (scripts, text, or binary)

.SQLfrom Whatis-Extensions

SQL queries (Informix)

.SQPfrom Whatis-Extensions

Query result of audio search (Sonique)

.SQR

Structured Query Language (SQL) program file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SQZfrom Whatis-Extensions

Compressed archive (SQUEEZE)

.src.rpmfrom Binh

Source RPM file. A 'tarball' that can be recompiled and installed which also allows RPM based systems to manage them.

.SREfrom Whatis-Extensions

Undefined file (Motorola)

.SRFfrom Whatis-Extensions

Raster graphics file (Sun)

.SRMfrom Whatis-Extensions

Video game console ROM emulator file

.SRPfrom Whatis-Extensions

SCript file (QuickLink)

.SRZfrom Whatis-Extensions

Source file (DataFlex)

.SSfrom Whatis-Extensions

Bitmap graphics (Splash)

.SSAfrom Whatis-Extensions

Video file (Sub Station Alpha)

.SSDfrom Whatis-Extensions

Datafile (SAS/PC)

.SSDfrom Whatis-Extensions

SAS database (Dos)

.SSD01from Whatis-Extensions

SAS data sets (Unix)

.SSFfrom Whatis-Extensions

Spreadsheet file (Enable)

.SSPfrom Whatis-Extensions

Datafile (SAS Transport)

.STfrom Whatis-Extensions

Disk Image file (Atari)

.STfrom Whatis-Extensions

Instrument library (Scream Tracker)

.STfrom Whatis-Extensions

Source code file (Little SmallTalk)

.STfrom Whatis-Extensions

Stamp file (NeoPaint)

.STAfrom Whatis-Extensions

Saved state (Reflection 4.0)

.STAfrom Whatis-Extensions

Stack file (SpinMaker Plus)

.STBfrom Whatis-Extensions

Stub library (Genus GX Kernel)

.STDfrom Whatis-Extensions

Standard script file (LocoScript)

.STD

State transition diagram graphic file (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STFfrom Whatis-Extensions

Compressed archive (SHRINKTOFIT)

.STLfrom Whatis-Extensions

Stereolithography file

.STMfrom Whatis-Extensions

Music file (Scream Tracker)

.STMfrom Whatis-Extensions

Music module (MOD) (Scream Tracker 2)

.STMfrom Whatis-Extensions

Shorter suffix for .shtml, an HTML file containing a server side include (SSI <http://WhatIs.techtarget.com/definition/0,,sid9_gci214225,00.html>)

.STM

State transition diagram model file (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STOfrom Whatis-Extensions

Pascal stub OBJ file (Genus GX Kernel)

.STQ

Text file (Statistica) (StatSoft Software) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.STRfrom Whatis-Extensions

Screensaver file

.STRfrom Whatis-Extensions

Structure list OBJ file (dBase IV Application Generator)

.STS

Project status information file (Microsoft C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STSfrom Whatis-Extensions

Song file (Music) (Scream Tracker)

.STWfrom Whatis-Extensions

Data file (SmartTerm for Windows)

.STXfrom Whatis-Extensions

Electronic book file (SmarText)

.STXfrom Whatis-Extensions

Tax form (CA-Simply Tax)

.STY

Style sheet (Generic text and graphics programs0 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STYfrom Whatis-Extensions

Style sheet (Ventura Publisher)

.SUI

Suit library (Simple User Interface Toolkit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SUMfrom Whatis-Extensions

Summary file (Generic)

.SUNfrom Whatis-Extensions

Rasterfile graphics (Sun)

.SUPfrom Whatis-Extensions

Supplementary dictionary files (WordPerfect for Windows)

.SVDfrom Whatis-Extensions

Autosave file for document (WordPerfect for Windows)

.SVF

Simple Vector Format 2D image (Microstation) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SVGfrom Whatis-Extensions

Autosave file for glossary (WordPerfect for Windows)

.SVGfrom Whatis-Extensions

Scalable vector graphics file (Adobe)

.SVPfrom Whatis-Extensions

Graphics file (Sonique)

.SVSfrom Whatis-Extensions

Autosave file for style sheet (WordPerfect for Windows)

.SVXfrom Whatis-Extensions

Interchange file format, 8SVX/16SV

.SVXfrom Whatis-Extensions

Sound file (Amiga 8SVX)

.SVYfrom Whatis-Extensions

Database file (SAVVY/PC)

.SWfrom Whatis-Extensions

Raw signed Word (16bit) data

.SWAfrom Whatis-Extensions

Shockwave audio file in Macromedia Director (an MP3 file)

.SWFfrom Whatis-Extensions

Object (ShockWave Flash)

.SWGfrom Whatis-Extensions

Swag Packet file (SWAG Reader)

.SWPfrom Whatis-Extensions

Document backup file (Sprint)

.SWPfrom Whatis-Extensions

Swap file (DataCAD)

.SWPfrom Whatis-Extensions

Swap file (DOS)

.SY1from Whatis-Extensions

Smartpix symbol library (Ami Pro)

.SY3from Whatis-Extensions

Symbol file (Harvard Graphics 2.0)

.SYDfrom Whatis-Extensions

Backup of startup files (QEMM)

.SYMfrom Whatis-Extensions

Precompiled header file (Borland C++)

.SYM

Program symbol table (Generic to compilers) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SYMfrom Whatis-Extensions

Symbol file (Harvard Graphics 2.0)

.SYNfrom Whatis-Extensions

SDSC Synu image file (SDSC Image Tool)

.SYNfrom Whatis-Extensions

Synonym file (Microsoft Word 5.0)

.SYSfrom Whatis-Extensions

Datafile (SPSS/PC)

.SYSfrom Whatis-Extensions

Datafile (SYGRAPH)

.SYSfrom Whatis-Extensions

Datafile (SYSTAT)

.SYSfrom Whatis-Extensions

System file (Generic)

.SYSfrom Whatis-Extensions

System file Device driver or hardware configuration file

.SYWfrom Whatis-Extensions

Graphics symbols (Harvard Graphics)

.SYWfrom Whatis-Extensions

Wave file (Yamaha SV-series)

.Tfrom Whatis-Extensions

Source file (TADS)

.Tfrom Whatis-Extensions

Tape archive (TAR) (Without compression)

.T

Tester symbol file (ReaGeniX code generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.T2Tfrom Whatis-Extensions

Modeling software file (Sonata CAD)

.T44

Temporary file for sorting index (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.T64from Whatis-Extensions

Emulator tape image file (Commodore 64)

.TABfrom Whatis-Extensions

Guitar Tablature file

.TABfrom Whatis-Extensions

Table file (MapInfo GIS)

.Tagfrom Whatis-Extensions

image bitmap file (TIFF)

.TAGfrom Whatis-Extensions

Query tag name file (DataFlex)

.TAHfrom Whatis-Extensions

Turbo assembler help file (Borland C++)

.TALfrom Whatis-Extensions

Text illustration file (TypeAlign)

.TARfrom Whatis-Extensions

<http://searchEnterpriseLinux.techtarget.com/sDefinition/ 0,,sid39_gci213093,00.html> Tape Archive

.TARfrom Whatis-Extensions

Compressed archive (TAR)

.tarfrom Rute-Users-Guide

tarred directory tree.

.tar.gzfrom Binh

See tarball.

.TAZfrom Whatis-Extensions

Compressed ASCII archive (COMPRESS)

.TAZfrom Whatis-Extensions

Compressed ASCII archive (TAR)

.TAZfrom Whatis-Extensions

Gzip/Tape archive (Unix)

.TB1from Whatis-Extensions

Font file (Borland Turbo C)

.TB2from Whatis-Extensions

Font file (Borland Turbo C)

.TBFfrom Whatis-Extensions

Fax document (Imavox TurboFax)

.TBK

Interactive multimedia files (Asymetrix Toolbook) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TBKfrom Whatis-Extensions

Memo backup file (dBase IV)

.TBKfrom Whatis-Extensions

Memo backup file (Microsoft FoxPro)

.TBKfrom Whatis-Extensions

Toolbook file (Asymetrix Toolbook)

.TBL

Graphics (Native format) (Pagemaker TableEditor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TBLfrom Whatis-Extensions

Table of values (OS/2)

.TBS

Text elements (Microsoft Word for Windows) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.TBXfrom Whatis-Extensions

Table (Project Scheduler 4)

.TCfrom Whatis-Extensions

Configuration file (Borland C++)

.TCfrom Whatis-Extensions

Configuration file (Turbo C)

.TCHfrom Whatis-Extensions

Turbo C Help file (Borland C++)

.TCLfrom Whatis-Extensions

Script in the TCL/TK Language

.tcl

Tcl/Tk source code (programming language). From Rute-Users-Guide [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.TCWfrom Whatis-Extensions

Drawing file (TurboCAD for Windows)

.TD

Configuration file (Turbo Debugger for DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TD0from Whatis-Extensions

Disk image file (Teledisk)

.TD2

Configuration file (Turbo Debugger for WIN32) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TD4

Saved track design (Roller Coaster Tycoon) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.TDBfrom Whatis-Extensions

Database file (TACT)

.TDBfrom Whatis-Extensions

Database file (Thumbs Plus)

.TDDDfrom Whatis-Extensions

A file format use by the Imagine & Turbo Silver ray-tracers

.TDFfrom Whatis-Extensions

Font file (TheDraw)

.TDFfrom Whatis-Extensions

Typeface definition file (Speedo)

.TDHfrom Whatis-Extensions

Help file (Turbo Debugger0

.TDK

Keystroke recording file (Turbo Debugger) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.TDSfrom Whatis-Extensions

Symbol table (Turbo Debugger)

.TDW

Configuration file (Turbo Debugger for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TEFfrom Whatis-Extensions

Fax document (Relisys TEFAX)

.TELfrom Whatis-Extensions

Hostfile (Telnet)

.TEMfrom Whatis-Extensions

Input template (IconAuthor)

.TEM

Turbo Editor Macro Language script (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TEXfrom Whatis-Extensions

Datasheet file (Idealist)

.texfrom Rute-Users-Guide

TEX or LATEX document. LATEX is for document processing and typesetting.

.TEXfrom Whatis-Extensions

TEX text file (Scientific Word)

.TEXfrom Whatis-Extensions

Texture file

.texi, .texinfofrom Rute-Users-Guide

Texinfo source. Info pages are compiled from these.

.TFfrom Whatis-Extensions

Configuration file (Turbo Profiler)

.TFAfrom Whatis-Extensions

Area file (Turbo Profiler)

.TFC

Catalogue file (Tobi's Floppy Disk Cataloguer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TFHfrom Whatis-Extensions

Help file (Turbo Profiler)

.TFMfrom Whatis-Extensions

Form file (Form Tool Gold)

.tfmfrom Rute-Users-Guide

LATEX font metric file.

.TFMfrom Whatis-Extensions

Tagged font metric file (TeX)

.TFMfrom Whatis-Extensions

TeX font metrics file (TeX)

.TFSfrom Whatis-Extensions

Statistics file (Turbo Profiler)

.TG1from Whatis-Extensions

Project file (On Target)

.TGAfrom Whatis-Extensions

Targa bitmap (Adobe Acrobat,TrueVision)

.TGA

Targa bitmap (Countour Mortgage Loan Format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.tgafrom Rute-Users-Guide

TARGA image file.

.TGAfrom Whatis-Extensions

Winpoint Loan file (Microsoft Excel)

.TGQ

Movie file (Dungeon Keeper 2) (Bullfrog Software) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TGVfrom Whatis-Extensions

Video file (Electronic Arts) (Need for Speed I/II/III, NBA '96)

.tgzfrom Rute-Users-Guide

Directory tree that has been archived with tar, and then compressed with gzip. Also a package for the Slackware distribution.

.TGZfrom Whatis-Extensions

Gzip/Tape archive (Unix)

.THEMEfrom Whatis-Extensions

Desktop theme (Microsoft Windows 9.x)

.THMfrom Whatis-Extensions

Thumbnail image file (Microsoft Clip Gallery v.1.x)

.THN

Thumbnail (Graphics Workshop for Windows) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.THS

Thesaurus dictionary (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TIFfrom Whatis-Extensions

Tag image bitmap file (TIFF)

.TIFFfrom Whatis-Extensions

<http://WhatIs.techtarget.com/definition/0,,sid9_gci214180,00.html>

.tifffrom Rute-Users-Guide

TIFF image file.

.TIGfrom Whatis-Extensions

Map file (Tiger) (Used by the US Government to distribute Map files)

.TILfrom Whatis-Extensions

Fuzzy Logic knowledge base file (Togai InfraLogic Fuzzy-C Compiler)

.TIMfrom Whatis-Extensions

Texture/Image file (Playstation)

.TISfrom Whatis-Extensions

Tile set (MahJongg 3.0)

.TJFfrom Whatis-Extensions

backup files (VAXTPU Editor)

.TLBfrom Whatis-Extensions

OLE type library files (Microsoft)

.TLBfrom Whatis-Extensions

Reference table (Bubble Editor)

.TLBfrom Whatis-Extensions

Text library (VAX)

.TLBfrom Whatis-Extensions

Type library (Visual C++)

.TLCfrom Whatis-Extensions

Compiled tool command language source code file (Swat)

.TLEfrom Whatis-Extensions

Two-Line element set (NASA)

.TLP

Project timeline file (Microsoft Project) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.TLXfrom Whatis-Extensions

Data file (Trellix)

.TMF

Tagged font metric file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TMOfrom Whatis-Extensions

Ztg global optimizer default optimizer file (Zortech C++)

.TMPfrom Whatis-Extensions

Temporary file (Microsoft Windows) (ALL)

.TMSfrom Whatis-Extensions

Script file (Telemate)

.TNVfrom Whatis-Extensions

Data file (BitWare)

.TOCfrom Whatis-Extensions

Table of contents file (Eudora Mailbox)

.TOLfrom Whatis-Extensions

Image file (Kodak Photo Enhancer)

.TOSfrom Whatis-Extensions

Self-Extracting archive (Atari ST)

.TOSfrom Whatis-Extensions

The Operation System for Atari line of 16/32 and 32/32 computers

.TPfrom Whatis-Extensions

Configuration file (Turbo Pascal)

.TPfrom Whatis-Extensions

Sesson-state file (Turbo Profiler)

.TP3from Whatis-Extensions

Template file (Harvard Graphics)

.TP4

Saved picture file (Roller Coaster Tycoon) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.TPB

Downloadable PCL Soft font file backup (HiJaak) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TPFfrom Whatis-Extensions

Downloadable PCL Soft font file (HiJaak)

.TPHfrom Whatis-Extensions

Help file (Turbo Pascal)

.TPLfrom Whatis-Extensions

Encrypted lesson file (TutorPro)

.TPLfrom Whatis-Extensions

Residents units library (Turbo Pascal)

.TPLfrom Whatis-Extensions

Template file ( Cakewalk Audio)

.TPLfrom Whatis-Extensions

Template file (DataCAD)

.TPLfrom Whatis-Extensions

Template file (Harvard Graphics 2.0)

.TPPfrom Whatis-Extensions

Project file (Teleport Pro)

.TPP

Protected mode units (Borland Pascal 7.0) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.TPUfrom Whatis-Extensions

Command file (VAXTPU Editor)

.TPUfrom Whatis-Extensions

Turbo Pascal Unit (Turbo Pascal)(BGI)

.TPVfrom Whatis-Extensions

Packed graphics file (TutorPro)

.TPWfrom Whatis-Extensions

Packed wave files (TutorPro)

.TPWfrom Whatis-Extensions

Session-state file (Turbo Profiler for Microsoft Windows)

.TPWfrom Whatis-Extensions

Turbo Pascal Unit (BGI) (Turbo Pascal for Windows 9.x)

.TPXfrom Whatis-Extensions

Image file (ULead Photo Express)

.TPZfrom Whatis-Extensions

Compressed archive (GNUzip)

.TPZfrom Whatis-Extensions

Compressed archive (TAR)

.TRfrom Whatis-Extensions

Session-state settings (Turbo Charge Debugger for DOS)

.TR2from Whatis-Extensions

Session-state settings (Turbo Charge Debugger for Win32)

.TRAfrom Whatis-Extensions

Saved game file (Coaster)

.TRCfrom Whatis-Extensions

Debug support file (Power CTrace)

.TREfrom Whatis-Extensions

Directory tree file (PC-Tools)

.TRKfrom Whatis-Extensions

Script file (Kermit)

.TRMfrom Whatis-Extensions

Terminal file (Generic)

.TRM

Terminal settings file (Microsoft Windows 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TRNfrom Whatis-Extensions

Project usage log (MKS Source Integrity)

.TRNfrom Whatis-Extensions

Translation support file (Quattro Pro)

.TRSfrom Whatis-Extensions

Executable file (MicroGraphix)

.TRWfrom Whatis-Extensions

Session-state settings (Turbo Debugger for Windows)

.TST

Printer test file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TTFfrom Whatis-Extensions

TrueType font (Generic)

.ttffrom Rute-Users-Guide

Truetype font.

.TTK

Translation tool kit file (Corel Catalyst) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.TTOfrom Whatis-Extensions

Client access data specification file (AS/400) (Server to Client)

.TUVfrom Whatis-Extensions

Tutorial file (Many programs use this suffix for their tutorials) (Generic)

.TVfrom Whatis-Extensions

Table view settings (Paradox)

.TV1from Whatis-Extensions

Overflow file above insert point in document 1 (WordPerfect for Windows)

.TV2from Whatis-Extensions

Overflow file above insert point in document 2 (WordPerfect for Windows)

.TV3from Whatis-Extensions

Overflow file above insert point in document 3 (WordPerfect for Windows)

.TV4from Whatis-Extensions

Overflow file above insert point in document 4 (WordPerfect for Windows)

.TV5from Whatis-Extensions

Overflow file above insert point in document 5 (WordPerfect for Windows)

.TV6from Whatis-Extensions

Overflow file above insert point in document 6 (WordPerfect for Windows)

.TV7from Whatis-Extensions

Overflow file above insert point in document 7 (WordPerfect for Windows)

.TV8from Whatis-Extensions

Overflow file above insert point in document 8 (WordPerfect for Windows)

.TV9from Whatis-Extensions

Overflow file above insert point in document 9 (WordPerfect for Windows)

.TVFfrom Whatis-Extensions

Table view settings (dBase IV)

.TWFfrom Whatis-Extensions

Data file (TABWorks)

.TWWfrom Whatis-Extensions

Template file (TagWrite)

.TX8from Whatis-Extensions

MS-DOS text

.TXBfrom Whatis-Extensions

Encoded briefing file (Descent/D2)

.TXFfrom Whatis-Extensions

Compressed archive (FREEZE)

.TXFfrom Whatis-Extensions

Compressed archive (TAR)

.TXFfrom Whatis-Extensions

Tax exchange format (Quicken and others)

.TXIfrom Whatis-Extensions

Support file (TeX)

.TXTfrom Whatis-Extensions

ASCII <http://WhatIs.techtarget.com/definition/0,,sid9_gci211600,00.html > text-formatted data

.txtfrom Rute-Users-Guide

Plain English text file.

.TXWfrom Whatis-Extensions

Wave file (Yamaha TX16W)

.TYMfrom Whatis-Extensions

Time Stamp files (PageMaker 4.0)

.TZfrom Whatis-Extensions

Old compression file (TAR), (COMPRESS)

.TZBfrom Whatis-Extensions

Compressed archive (Tar)

.UAPfrom Whatis-Extensions

User agent profile (Used by wireless telephony applications)

.UBfrom Whatis-Extensions

Raw unsigned byte (8-bit) data

.UC2from Whatis-Extensions

Compressed archive (UltraCompressor II)

.UCN

New compressed archive (UltraCompressor II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UDFfrom Whatis-Extensions

Image filter (Photostyler)

.UDFfrom Whatis-Extensions

Unique Database (Microsoft Windows NT)

.UDWfrom Whatis-Extensions

Raw unsigned doubleword (32-bit) data

.UE2from Whatis-Extensions

Encrypted archive (UltraCompressor II)

.UFOfrom Whatis-Extensions

Object file (Ulead)

.UGfrom Whatis-Extensions

Drawing file (AutoCAD and others)

.UHSfrom Whatis-Extensions

Binary file (Universal Hint System)

.UI

Espire source code (Geoworks UI Compiler) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.UIfrom Whatis-Extensions

User interface file (Sprint)

.UIFfrom Whatis-Extensions

Long prompts for Microsoft Windows (WordPerfect for Windows)

.UIH

Espire header file (Geoworks UI Compiler) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.ULfrom Whatis-Extensions

Audio file (ULAW)

.ULAWfrom Whatis-Extensions

(CCITT G.711) audio (US Telephony)

.ULDfrom Whatis-Extensions

Uploaded file information (Procomm Plus)

.ULTfrom Whatis-Extensions

Music module (MOD) (UltraTracker)

.UMBfrom Whatis-Extensions

Backup file (archive) (MemMaker)

.UNIfrom Whatis-Extensions

Datafile (Forcast Pro)

.UNIfrom Whatis-Extensions

UniMod music module (MOD) (MikMod)

.UNXfrom Whatis-Extensions

Text file (Unix specific information)

.UPDfrom Whatis-Extensions

Updated program data (dBase)

.UPDfrom Whatis-Extensions

Updated program data (Generic)

.UPIfrom Whatis-Extensions

Program file (ULead Photo Impact)

.UPOfrom Whatis-Extensions

Compiled updated datafile (dBase)

.UPXfrom Whatis-Extensions

Saved Image file (ULead Photo Express)

.URFfrom Whatis-Extensions

Universal radar format (Radar ViewPoint)

.URLfrom Whatis-Extensions

Internet shortcut file (Universal Resource Locator)

.USEfrom Whatis-Extensions

Source Integrity file (MKS)

.USPfrom Whatis-Extensions

Printer font w/updated USACII extended character set (Pagemaker)

.USRfrom Whatis-Extensions

Audit trail file (Pro/Engineer)

.USRfrom Whatis-Extensions

User database file (Procomm Plus)

.USRfrom Whatis-Extensions

User database file (Tour)

.USRfrom Whatis-Extensions

User database file (Turbo C++)

.UUfrom Whatis-Extensions

Compressed ASCII archive (UUDE/ENCODE)

.UUfrom Whatis-Extensions

UU-encoded file

.UUE

Executable compressed ASCII archive (UUDE/ENCODE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UUEfrom Whatis-Extensions

UU-encoded file

.UWfrom Whatis-Extensions

Raw unsigned 16-bit) datafile (Word)

.UWFfrom Whatis-Extensions

Wave file (UltraTracker)

.Vfrom Whatis-Extensions

Consistency check support file (ReaGeniX Code Generator)

.Vfrom Whatis-Extensions

Main image input file (Vivid 2.0)

.V8from Whatis-Extensions

8-bit audio file (CoVox)

.VAL

Asset management document (Milliplex OmniValue) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VALfrom Whatis-Extensions

Validity checks/referential integrity checks (Paradox for Windows)

.VALfrom Whatis-Extensions

Values list object file (dBase Application Generator)

.VANfrom Whatis-Extensions

Animation file (VistaPro)

.VAPfrom Whatis-Extensions

Annotated speech file (Generic)

.VARfrom Whatis-Extensions

ASCII text file for data dictionary (Sterling Software Groundworks, COOL Business Team Enterprise Model)

.VARfrom Whatis-Extensions

Variable file (IconAuthor)

.VBAfrom Whatis-Extensions

VBase file

.VBPfrom Whatis-Extensions

Project file (Microsoft Visual Basic)

.VBRfrom Whatis-Extensions

Remote automated registration file (Microsoft Visual Basic)

.VBSfrom Whatis-Extensions

Script file (Microsoft Visual Basic)

.VBWfrom Whatis-Extensions

Workspace file (Microsoft Visual Basic)

.VBX

Custom control file (Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VBX

Visual basic extension (Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VC

Include file with color definitions (Vivid 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VCfrom Whatis-Extensions

Spreadsheet (VisaCalc)

.VCEfrom Whatis-Extensions

Unformatted voice file (Natural Microsystems) (NMS)

.VCE

Unformatted voice file (used by Cool Edit) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.VCFfrom Whatis-Extensions
Configuration file; defines objects for use with Sense8's WorldToolKit (Vevi)
.VCFfrom Whatis-Extensions

Virtual card file (Many programs use this extension)

.VCFfrom Whatis-Extensions

Virtual card file (Netscape)

.VCTfrom Whatis-Extensions

Class library (Microsoft FoxPro) (MFC)

.VCWfrom Whatis-Extensions

Visual workbench information file (Microsoft Visual C++)

.VCXfrom Whatis-Extensions

Class library (Microsoft FoxPro)(MFC)

.VDAfrom Whatis-Extensions

Graphics image (Generic)

.VDAfrom Whatis-Extensions

Targa bitmap

.VDRfrom Whatis-Extensions

Drawing file (ComputerEasy Draw)

.VELfrom Whatis-Extensions

3D drawing file (CAD( (Ashlar)

.VEWfrom Whatis-Extensions

View file (Clipper 5)

.VEWfrom Whatis-Extensions

View file (Lotus Approach)

.VFLfrom Whatis-Extensions

Clip art file (PrintMaster Gold)

.VFMfrom Whatis-Extensions

Voting form (Voter)

.VFNfrom Whatis-Extensions

Voting form for customers (VFN)

.VGAfrom Whatis-Extensions

Video graphics array (Font type for display on a VGA Monitor)

.VGAfrom Whatis-Extensions

Video graphics array (Monitor type, also defines if your monitor is compliant with the new (1994) SVGA (Super Video Graphics Array) (SVGA)

.VGDfrom Whatis-Extensions

Visual display driver ( Generic CADD)

.VGRfrom Whatis-Extensions

Graphics file (Ventura Publisher)

.VIfrom Whatis-Extensions

Graphics file (Jovian Logic VI)

.VIfrom Whatis-Extensions

Virtual Instrument file (National Instruments LABView)

.VICfrom Whatis-Extensions

Graphics file (Vicar)

.VID

Bethesda video files (Terminator, Future Shock) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VID

Bitmap graphics (YUV12C M-Motion Frame Buffer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VIDfrom Whatis-Extensions

Screen device driver (Microsoft Word)

.VIDfrom Whatis-Extensions

Shell monitor file (Microsoft DOS v.5)

.VIF

Khoros Visualisation image (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VIFF

Khoros Visualisation image (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VIKfrom Whatis-Extensions

Graphics Image (Viking)

.VIRfrom Whatis-Extensions

File identified as a virus-infected file by Norton AntiVirus and possibly others

.VISfrom Whatis-Extensions

Graphics image file (VIS)

.VIVfrom Whatis-Extensions

Streaming video file (VivoActive)

.VIZfrom Whatis-Extensions

dVS/dVISE file (Division)

.VLBfrom Whatis-Extensions

Library file (Corel Ventura)

.VLM

Drafting program file (Vellum, by Ashler) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.VMfrom Whatis-Extensions

Virtual memory file (Geoworks)

.VMCfrom Whatis-Extensions

Virtual memory configuration file (Adobe Acrobat Reader)

.VMD

On-line video file (Sierra) (Torin's Passage) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VMFfrom Whatis-Extensions

Audio file (FaxWorks)

.VMF

Font characteristics file (Ventura Publishing) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VMLfrom Whatis-Extensions

Vector markup language (used by Microsoft Office 2000)

.VMSfrom Whatis-Extensions

Text file with vms specific information

.VO

Include file with object definiton (Vivid 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VOBfrom Whatis-Extensions

Encrypted video and audio files used on current DVD's (Digital Video Disk)

.VOCfrom Whatis-Extensions

Audio file (Creative Labs Sound Blaster)

.VOCfrom Whatis-Extensions

Audio file (Quartet)

.vocfrom Rute-Users-Guide

Audio format (Soundblaster's own format).

.VOFfrom Whatis-Extensions

Object folder (VZ Programmer)

.VOXfrom Whatis-Extensions

Audio file (Talking Technology)

.VOXfrom Whatis-Extensions

Dialogic audio file coded using ADPCM <http://WhatIs.techtarget.com/ definition/0,,sid9_gci213763,00.html>

.VOX

Formatted voice file (Natural Microsystems) (NMS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VPfrom Whatis-Extensions

Publication (Ventura Publisher)

.VPGfrom Whatis-Extensions

Graphics image file (VPGraphics)

.VQAfrom Whatis-Extensions

Video files (Westwood Studios)

.VQEfrom Whatis-Extensions

VQ Locator file (Yamaha Sound)

.VQFfrom Whatis-Extensions

VQ file (Yamaha Sound) (possible emerging standard)

.VQLfrom Whatis-Extensions

VQ Locator file (Yamaha Sound)

.VRFfrom Whatis-Extensions

Configuration file (Oracle 7)

.VRMfrom Whatis-Extensions

Overlay file (Quattro Pro)

.VRMLfrom Whatis-Extensions

A VRML file

.VRPfrom Whatis-Extensions

Project file (VXRexx)

.VRS

Video device driver (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VS

Include file w/surface definition (Vivid 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VSDfrom Whatis-Extensions

Drawing file (flow chart or schematic)(Shapeware Visio)

.VSLfrom Whatis-Extensions

Download List file (GetRight)

.VSMfrom Whatis-Extensions

Simulation model (VisSim)

.VSNfrom Whatis-Extensions

A Windows 9x/NT ViruSafe version file; used to keep information about all the files in a directory; when a file is accessed, information is compared with the VSN information to ensure that they match

.VSPfrom Whatis-Extensions

Data print file (Schedule Soft)

.VSPfrom Whatis-Extensions

Image sprite (SPX)

.VSSfrom Whatis-Extensions

Smartshapes image file (Shapeware Visio)

.VSSfrom Whatis-Extensions

Stencil file (Shapeware Visio)

.VSTfrom Whatis-Extensions

Bitmap graphic file (TrueVison Vista)

.VSTfrom Whatis-Extensions

Targa bitmap (Generic)

.VSWfrom Whatis-Extensions

Workspace file (Shapeware Visio)

.VUEfrom Whatis-Extensions

Animation file (3D Studio)

.VUEfrom Whatis-Extensions

View file (dBase IV)

.VUEfrom Whatis-Extensions

View file (Microsoft FoxPro)

.VWfrom Whatis-Extensions

Text file (Volkswriter)

.VWPfrom Whatis-Extensions

Audio MetaSound plug-in (VoxWare Audio Compression Toolkit version 2.02.61)

.VWP

Audio plug-in (Voxware MetaVoice Toolkit) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.VWRfrom Whatis-Extensions

File viewer (PC Tools)

.VXD

Virtual device driver (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Wfrom Whatis-Extensions

Word chart file (APPLAUSE)

.W30from Whatis-Extensions

Printer font (AST TurboLaser)

.W30from Whatis-Extensions

Printer font (Ventura Publisher)

.W31from Whatis-Extensions

Startup file (Microsoft Windows 3.1)

.W3Lfrom Whatis-Extensions

W3Launch file

.W44from Whatis-Extensions

Temporary file for Sort or Index (dBase)

.WAB

Outlook file (Microsoft Outlook, Outlook Express) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WADfrom Whatis-Extensions

<http://WhatIs.techtarget.com/definition/0,,sid9_gci213332,00.html> Large file for Doom game containing video, player level, and other information

.WALfrom Whatis-Extensions

Texture file (Quake 2)

.WAS

Script source code file (Procomm Plus Aspect) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WAVfrom Whatis-Extensions

<http://WhatIs.techtarget.com/definition/0,,sid9_gci213473,00.html> Waveform sound (Microsoft Windows)

.wavfrom Rute-Users-Guide

Audio format (sound files common to Microsoft Windows).

.WAX

Compiled script file (Procomm Plus Aspect) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.WB1from Whatis-Extensions

Notebook (QuattroPro for Windows)

.WB2from Whatis-Extensions

Spreadsheet (QuattroPro for Windows)

.WB3from Whatis-Extensions

Text file (QuattroPro for Windows)

.WBCfrom Whatis-Extensions

Image file (Webshots)

.WBFfrom Whatis-Extensions

Batch file (Microsoft Windows 9.x)

.WBKfrom Whatis-Extensions

Backup file (Microsoft Word for Windows)

.WBLfrom Whatis-Extensions

Upload file (Argo Webload II)

.WBRfrom Whatis-Extensions

WordBar File (Crick Software)

.WBTfrom Whatis-Extensions

Batch file (WinBatch)

.WBTfrom Whatis-Extensions

Wordbar template (Crick Software)

.WCD

Macro token list file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WCMfrom Whatis-Extensions

Data transmission file (Microsoft Works)

.WCMfrom Whatis-Extensions

Macro (WordPerfect fdor Windows)

.WCPfrom Whatis-Extensions

Product information description file (WordPerfect for Windows)

.WD2

Database file (Info Select) by (Micro Logic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WDBfrom Whatis-Extensions

Database file (Microsoft Works)

.WDFfrom Whatis-Extensions

WebArt data file (database file that can be converted for use in many programs)

.WDG

Warftpd remote daemon <http://searchWebServices.techtarget.com/ sDefinition/0,,sid26_gci211888,00.html> file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WEBfrom Whatis-Extensions

Web document (Corel Zara)

.WEBfrom Whatis-Extensions

Web source code file

.WFBfrom Whatis-Extensions

Bank file (Maui/Rio/Monterey) (Turtle Beack WaveFront)

.WFDfrom Whatis-Extensions

Audio waveform (WaveForm Manager Pro)

.WFDfrom Whatis-Extensions

Drum set (Maui/Rio/Monterey)(Turtle Beach WaveFront)

.WFLfrom Whatis-Extensions

Flowchart file (Winflow)

.WFMfrom Whatis-Extensions

Windows form (Virtual dBase)

.WFNfrom Whatis-Extensions

Symbol (Corel Draw)

.WFPfrom Whatis-Extensions

Program file (Turtle Beach WaveFront)(Maui/Rio/Monterey)

.WFT

Data file (NICOLET (Old Format), see NRF) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.WFXfrom Whatis-Extensions

Data file (WinFax)

.WG1from Whatis-Extensions

Worksheet (Lotus 1-2-3/G)

.WG2from Whatis-Extensions

Worksheet (Lotus 1-2-3 for O/S2)

.WGPfrom Whatis-Extensions

Data file (Wild Board Games)

.WIfrom Whatis-Extensions

Wavelet compressed bitmap (Corel)

.WIDfrom Whatis-Extensions

Width table (Ventura Publisher)

.WIFfrom Whatis-Extensions

Wavelet image file (see WI)

.WILfrom Whatis-Extensions

WinImage file

.WIMfrom Whatis-Extensions

Wireless identity module (Used by wireless application protocols)

.WINfrom Whatis-Extensions

Window file (dBase)

.WINfrom Whatis-Extensions

Window file (Microsoft FoxPro)

.WINfrom Whatis-Extensions

Window preference file (Pro/Engineer)

.WISfrom Whatis-Extensions

Script file (Reynolds & Reynolds) (Stores the results of a database query)

.withfrom Whatis-Extensions
NSREX
.WIZfrom Whatis-Extensions

Page wizard (Microsoft Publisher)

.WIZfrom Whatis-Extensions

Wizard file (Microsoft Word)

.WK1from Whatis-Extensions

Spreadsheet (Lotus 1-2-3 v. 1 and 2)

.WK3from Whatis-Extensions

Spreadsheet (Lotus 1-2-3 v. 3)

.WK4from Whatis-Extensions

Spreadsheet (Lotus 1-2-3 v. 4)

.WKBfrom Whatis-Extensions

Document file (WordPerfect for Windows)

.WKE

Spreadsheet (Lotus 1-2-3 Educational version) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WKQfrom Whatis-Extensions

Spreadsheet (Quattro Pro)

.WKSfrom Whatis-Extensions

Document (Microsoft Works)

.WKSfrom Whatis-Extensions

Spreadsheet (Symphony 1.0)

.WKSfrom Whatis-Extensions

Worksheet spreadsheet (Lotus 1-2-3)

.WKSfrom Whatis-Extensions

Workspace file (Xlisp)

.WLDfrom Whatis-Extensions

REND386/AVRIL file

.WLFfrom Whatis-Extensions

Upload file (Argo Upload I)

.WLKfrom Whatis-Extensions

Graphics file (Virtus Walkthrough)

.WLLfrom Whatis-Extensions

Add-In file (Microsoft)

.WMAfrom Whatis-Extensions

Audio file in Microsoft Windows Media format (Can be changed to ASF) Siren (Sonic Foundry)

.WMC

Backup files for startup (MathCAD for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WMCfrom Whatis-Extensions

Macro file (WordPerfect for Windows)

.WMCfrom Whatis-Extensions

Text file (WordMARC)

.WMFfrom Whatis-Extensions

Metafile (Microsoft Windows)

.WNfrom Whatis-Extensions

Text file (NeXT WriteNow)

.WNF

Outline font description file (CorelDRAW) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.WOAfrom Whatis-Extensions

Swap file (Microsoft Windows 3.x)

.WOC

Organization chart (Microsoft Windows OrgChart) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.wordfrom Whatis-Extensions

processing documents

.WOWfrom Whatis-Extensions

Music module (MOD) (Grave Composer)

.WPfrom Whatis-Extensions

Document file (WordPerfect for Windows)

.WP4from Whatis-Extensions

Document (WordPerfect for Windows 4.0)

.WP5from Whatis-Extensions

Document (WordPerfect for Windows 5.0)

.WP6from Whatis-Extensions

Document (WordPerfect for Windows 6.0)

.WPAfrom Whatis-Extensions

Word processor document (ACT!)

.WPD

Demo file (WordPerfect for Windows) (ALL) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.WPDfrom Whatis-Extensions

Document (WordPerfect for Windows)

.WPFfrom Whatis-Extensions

Document (Enable)

.WPFfrom Whatis-Extensions

Fax document (WorldPort)

.WPFfrom Whatis-Extensions

Form file (WordPerfect for Windows)

.WPG

Graphics file (Microsoft Word for Windows) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.WPGfrom Whatis-Extensions

Microsoft Word for Windows vector graphics (DrawPerfect)

.WPKfrom Whatis-Extensions

Macro (Microsoft Word for Windows)

.WPMfrom Whatis-Extensions

Macro (Microsoft Word for Windows)

.WPSfrom Whatis-Extensions

Text document (Microsoft Works)

.WPTfrom Whatis-Extensions

Template (Microsoft Word for Windows)

.WPWfrom Whatis-Extensions

PerfectWorks document (Novell)

.WQ!from Whatis-Extensions

Compressed spreadsheet (QuattroPro)

.WQ1from Whatis-Extensions

Spreadsheet (QuattroPro/DOS)

.WQ2from Whatis-Extensions

Spreadsheet (QuattroPro version 5)

.WR1from Whatis-Extensions

Spreadsheet (Symphony 1.1-2)

.WR1from Whatis-Extensions

Symphony file (Lotus)

.WRDfrom Whatis-Extensions

Template (Charisma)

.WRGfrom Whatis-Extensions

ReGet document

.WRIfrom Whatis-Extensions

Write document (Windows Write)

.WRKfrom Whatis-Extensions

Project file (CakeWalk Music Audio)

.WRKfrom Whatis-Extensions

Spreadsheet (Symphony 1.0)

.WRLfrom Whatis-Extensions

Virtual Reality model

.WRP

3D modeling file (Raindrop Geomagic) (Scandata) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WRPfrom Whatis-Extensions

Compressed Amiga archive (WARP)

.WRS

Resource file (Microsoft Word for Windows) From Whatis-Extensions [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.WRZfrom Whatis-Extensions

Another VRML <http://WhatIs.techtarget.com/definition/ 0,,sid9_gci214153,00.html> fileject

.WSfrom Whatis-Extensions

Text file (WordStar)

.WS1

Document (WordStar for Windows version 1) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.WS2

Document (WordStar for Windows version 2) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.WS3

Document (WordStar for Windows version 3) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.WS4

Document (WordStar for Windows version 4) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.WS5

Document (WordStar for Windows version 5) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.WS6

Document (WordStar for Windows version 6) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.WS7

Document (WordStar for Windows version 7) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.WSDfrom Whatis-Extensions

Document (WordStar for Windows 2000)

.WSPfrom Whatis-Extensions

WorkSpace file (Fortran PowerStation)

.WSTfrom Whatis-Extensions

Document (WordStar for Windows)

.WSZfrom Whatis-Extensions

Skin (WinAmp)

.WTAfrom Whatis-Extensions

Used by wireless telephony applications

.WVLfrom Whatis-Extensions

Wavelet Compressed Bitmap

.WVW

Interleaf WorldView format (a PDF format) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.WWBfrom Whatis-Extensions

Button bar for document window (WordPerfect for Windows)

.WWK

Keyboard layout file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WWLfrom Whatis-Extensions

Add-in file (Microsoft Word)

.WXDfrom Whatis-Extensions

Music resource file (Relic Entertainment)(Home World)

.WXP

Document file (EXP for Microsoft Windows) From Whatis-Extensions [http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.Xfrom Whatis-Extensions

AVS image (SDSC Image Tool)

.Xfrom Whatis-Extensions

Source code file (Lex)

.X01from Whatis-Extensions

Secondary index file (Paradox)

.X02from Whatis-Extensions

Secondary index file (Paradox)

.X03from Whatis-Extensions

Secondary index file (Paradox)

.X04from Whatis-Extensions

Secondary index file (Paradox)

.X05from Whatis-Extensions

Secondary index file (Paradox)

.X06from Whatis-Extensions

Secondary index file (Paradox)

.X07from Whatis-Extensions

Secondary index file (Paradox)

.X08from Whatis-Extensions

Secondary index file (Paradox)

.X09from Whatis-Extensions

Secondary index file (Paradox)

.X16

Macromedia Extra (program extension), 16 bit From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.X32

Macromedia Extra (program extension), 32 bit From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XARfrom Whatis-Extensions

Corel Xara drawing

.XBMfrom Whatis-Extensions

A MIME 'X11" bitmap image

.XDLfrom Whatis-Extensions

XML Schema file

.XFNfrom Whatis-Extensions

Printer font file (Ventura Publisher)

.XFNfrom Whatis-Extensions

Printer font file (Xerox)

.XFTfrom Whatis-Extensions

Printer font file (24 Pin) (ChiWriter)

.XFXfrom Whatis-Extensions

Fax Document (Various)

.XHTMLfrom Whatis-Extensions

eXtensible hypertext markup language

.XIfrom Whatis-Extensions

Instrument file (FastTracker II)

.XIfrom Whatis-Extensions

Instrument sample file (ScreamTracker)

.XIFfrom Whatis-Extensions

Image file (Pagis)

.XIFfrom Whatis-Extensions

Image file (Xerox) (same as TIF)

.XIFfrom Whatis-Extensions

Image file eXtended (ScanSoft) the file is similar to TIFF and is a

.XIF

Wang imaging file (Included with Windows 95) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XLAfrom Whatis-Extensions

Add-in file (Microsoft Excel)

.XLAfrom Whatis-Extensions

Archive (Xlib)

.XLBfrom Whatis-Extensions

Datafile (Microsoft Excel)

.XLBfrom Whatis-Extensions

Toolbar file (Microsoft Excel)

.XLCfrom Whatis-Extensions

Chart file (Microsoft Excel)

.XLDfrom Whatis-Extensions

Dialogue file (Microsoft Excel)

.XLKfrom Whatis-Extensions

Backup file (Microsoft Excel)

.XLLfrom Whatis-Extensions

Add-in file (Microsoft Excel)

.XLLfrom Whatis-Extensions

Dynamic link library (Microsoft Excel)

.XLMfrom Whatis-Extensions

Macro file (Microsoft Excel)

.XLSfrom Whatis-Extensions

Worksheet file (Microsoft Excel)

.XLTfrom Whatis-Extensions

Template file (Microsoft Excel)

.XLTfrom Whatis-Extensions

Translation table (Lotus 1-2-3)

.XLTfrom Whatis-Extensions

Translation table (Procomm Plus)

.XLTfrom Whatis-Extensions

Translation table (Symphony)

.XLVfrom Whatis-Extensions

VBA module (Microsoft Excel)

.XLWfrom Whatis-Extensions

Workbook (Microsoft Excel)

.XMfrom Whatis-Extensions

Music module (MOD) (Fast Tracker 2)

.XMIfrom Whatis-Extensions

Compressed midi music (eXtended)

.XMLfrom Whatis-Extensions

eXtensible markup language

.xmlfrom Binh

XML source file. See XML.

.XNFfrom Whatis-Extensions

Network file (Standard)

.XNKfrom Whatis-Extensions

Shortcut file (Microsoft Exchange)

.XONfrom Whatis-Extensions

Datafile (Axon)

.XPMfrom Whatis-Extensions

X BitMap format

.xpmfrom Rute-Users-Guide

XPM image file.

.XQTfrom Whatis-Extensions

Executable file (Waffle)

.XQTfrom Whatis-Extensions

Macro file (SuperCalc)

.XR1from Whatis-Extensions

Data file (Epic Megagames Xargon)

.XRFfrom Whatis-Extensions

Cross-reference file (Generic)

.XTBfrom Whatis-Extensions

External translation table (LocoScript)

.XTPfrom Whatis-Extensions

Data file (Xtree)

.XWDfrom Whatis-Extensions

X Window Dump format (SDSC Image Tool)

.XWFfrom Whatis-Extensions

Works file (Yamaha XG) (MIDI <http://WhatIs.techtarget.com/definition/ 0,,sid9_gci212572,00.html> sequencing)

.XWKfrom Whatis-Extensions

Keyboard mapping file (Crosstalk)

.XWPfrom Whatis-Extensions

Session file (Crosstalk)

.XWPfrom Whatis-Extensions

Text file (Xerox Writer)

.XXfrom Whatis-Extensions

Compressed ASCII archive (XXENCODE)

.XXEfrom Whatis-Extensions

Compressed ASCII archive (XXENCODE)

.XXX

XXXX From Whatis-Extensions [http://www.tldp.org/LDP/Linux-Dictionary/ html/index.html] http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XYfrom Whatis-Extensions

Text file (XYWrite)

.XY3from Whatis-Extensions

Document file (XYWrite III)

.XY4from Whatis-Extensions

Document file (XYWrite IV)

.XYPfrom Whatis-Extensions

Document file (XYWrite III Plus)

.XYWfrom Whatis-Extensions

Document file (XYWrite for Windows 4.x)

.Yfrom Whatis-Extensions

Compressed Amiga archive (YABBA)

.Yfrom Whatis-Extensions

Grammar file (Yaac)

.yfrom Rute-Users-Guide

yacc source file.

.Y01from Whatis-Extensions

Secondary index file (Paradox)

.Y02from Whatis-Extensions

Secondary index file (Paradox)

.Y03from Whatis-Extensions

Secondary index file (Paradox)

.Y04from Whatis-Extensions

Secondary index file (Paradox)

.Y05from Whatis-Extensions

Secondary index file (Paradox)

.Y06from Whatis-Extensions

Secondary index file (Paradox)

.Y07from Whatis-Extensions

Secondary index file (Paradox)

.Y08from Whatis-Extensions

Secondary index file (Paradox)

.Y09from Whatis-Extensions

Secondary index file (Paradox)

.YALfrom Whatis-Extensions

Clipart library (Arts & Letters)

.YBKfrom Whatis-Extensions

Yearbook file (Microsoft Encarta)

.YUVfrom Whatis-Extensions

Graphics file (YUV)

.YZfrom Whatis-Extensions

Compressed file archive (YAC)

.Zfrom Whatis-Extensions

Compressed ASCII archive (COMPRESS)

.Z

File compressed with the compress compression program. From Rute-Users-Guide Can be deflated using the 'uncompress' utility. [http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

.Zfrom Whatis-Extensions

Unix file Compressed

.Z3from Whatis-Extensions

Game module (Infocom)

.ZAPfrom Whatis-Extensions

Compressed file (FileWrangler)

.ZAPfrom Whatis-Extensions

Software installation settings file (Microsoft Windows)

.ZDGfrom Whatis-Extensions

Compressed text document (Zview)

.ZERfrom Whatis-Extensions

Data file (Zerberus)

.ZGMfrom Whatis-Extensions

Graphics file (ZenoGraphics)

.zipfrom Rute-Users-Guide

File compressed with the pkzip (or PKZIP.EXE for DOS) compression program.

.ZIPfrom Whatis-Extensions

Zip file Compressed archive

.ZOMfrom Whatis-Extensions

Compressed Amiga archive (ZOOM)

.ZOOfrom Whatis-Extensions

An early compressed file format

.ZVDfrom Whatis-Extensions

Voice file (Zyxel Z-Fax)

.~$~from Whatis-Extensions

Temporary file (1ST Reader)

.~AP

AppExpert project database file (Borland C++ 4.5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

.~DEfrom Whatis-Extensions

Project backup file (Borland C++ 4.5)

.~MNfrom Whatis-Extensions

Menu backup (Norton Commander)

.~PRfrom Whatis-Extensions

Project backup file (Terramodel)

/bin

A directory containing executable programs, primarily binary files. From I-gloss http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:/ /www.tldp.org/LDP/Linux-Dictionary/html/index.html

/bin

A directory that contains executable programs, the majority of which are stored in binary files. Most programs are found in directories /bin and / usr/bin; however, users often keep additional programs in private bin directories, such as /home/linux/bin. From Linux Guide @FirstLinux [http: //www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

/dev/nullfrom Hacking-Lexicon

On UNIX, this is a virtual-file that can be written to. Data written to this file gets discarded. It is similar to the file call NUL on Windows machines. Key point: When rooting a machine, intruders will often redirect logging to /dev/null For example, the command ln -s /dev/null .bash_history will cause the system to stop logging bash commands. Culture: In the vernacular, means much the same thing as black hole. Typical usage: if you don't like what I have to say, please direct your comments to /dev/null.

/etcfrom Hacking-Lexicon

The directory on UNIX where the majority of the configuration information is kept. It is roughly analogous to the Windows registry. Of particular interest is /etc/passwd file that stores all the passwords. Key point: If an intruder can read files from this directory, then they can likely use the information to attack the machine.

/etc/hostsfrom Hacking-Lexicon

The file that contains a list of hostname to IP address mappings. In the old days of the Internet, this is how machines contacted each other. A master hosts file was maintained and downloaded to machines on a regular basis. Then DNS came along. Like the vestigial appendix. On Windows, this file is stored in %SystemRoot%\system32\drivers\etc. Hack: If you can write files to a user's machine, then you can add entries to his/her hosts files to point to your own machine instead. For example, put an entry for www.microsoft.com to point to your machine, then proxy all the connections for the user. This will allow you to perform a man in the middle attack.

/etc/hosts.equivfrom Hacking-Lexicon

On UNIX, the "hosts.equiv" file lists other hosts that can be thought of as "equivalent" to this one. This machine will therefore "trust" these other machines. Users connecting to this machine from the listed machines will not have to present a password, it is assumed that these other machines have already verified the password. Analogy: The European Union (EU) doesn't have passport control between countries. You only have to present your passport when entering the first European country, then you can roam freely once inside the union. The "hosts.equiv" file creates a similar union of machines. Hack: Hackers will target this file. If their target is machine A, they may instead find that A trusts B, and B may be easier to break into first. At that point, the hacker can hop back to A using an account on B. Likewise, if a hacker can write to this file, they can tell the system to trust any other system on the network (including the hackers own machine). Hack: Older software would do a reverse DNS lookup on a connecting IP address. If the hacker controlled the DNS server, s/he could return a trusted domain name, and therefore be allowed into the system. Another older hack is the default "+" entry.

/etc/passwdfrom Hacking-Lexicon

The UNIX file that contains the account information, such as username, password, login directory, and default shell. All normal users on the system can read this file. Key point: The passwords are encrypted, so even though everyone can read the file, it doesn't automatically guarantee access to the system. However, programs like crack are very effective at decrypting the passwords. On any system with many accounts, there is a good chance the hacker will be able to crack some of the accounts if they get hold of this file. Key point: Modern UNIX systems allow for shadowed password files, stored in locations like /etc/shadow that only root has access to. The normal password file still exists, minus the password information. This provides backwards compatibility for programs that still must access the password file for account information, but which have no interest in the passwords themselves. Key point: The chief goal of most hacks against UNIX systems is to retrieve the password file. Many attacks do not compromise the machine directly, but are able to read files from the machine, such as this file.

/etc/servicesfrom Hacking-Lexicon

On UNIX, the configuration file /etc/services maps port numbers to named services. Key point: Its role in life is so that programs can do a getportbyname() sockets call in their code in order to get what port they should use. For example, a POP3 email daemon would do a getportbyname ("pop3") in order to retrieve the number 110 that pop3 runs at. The idea is that if all POP3 daemons use getportbyname(), then no matter what POP3 daemon you run, you can always reconfigure its port number by editing / etc/services. Misunderstanding: This file is bad in order to figure out what port numbers mean. If you want to find out what ports programs are using, you should instead use the program lsof to find out exactly which ports are bound to which processes. If running lsof is not appropriate, then you should lookup the ports in a more generic reference.

0-day (zero-day)

The term 0-day exploit describes an exploit that is not publicly known. It describe tools by elite hackers who have discovered a new bug and shared it only with close friends. It also describes some new exploit for compromising popular services (the usual suspects: BIND, FTP services, Linux distros, Microsoft IIS, Solaris servers). Many 0-day exploits are discovered by the victims when hackers use them, or by honeypots. The term "0-day" describes the fact that the value of exploits quickly goes down as soon as they are announced. The next day they are half as valuable. The 2nd day they are a 1/4 as valuable. Ten days later they are 1/1000 as valuable as on day 0. This is because script-kiddies quickly use the exploits on computers throughout the Internet, compromising systems before anybody else can get to them. Contrast: The term 0-day exploit describe the hard-to-use exploits by the discoverer himself (or close friends), in contrast to the easy-to-use scripts employed by script kiddies. For example, a buffer-overflow script will go through many phases as people try to find the right offsets for the target platforms, but will eventually end up as a broad-spectrum aim-and-shoot script that anybody could use. Key point: One of the dangers of 0-day exploits is BUGTRAQ camping. A hacker discovers all the services running on the target victim and waits for day-0 when the exploit is announced. At that time, the hacker attacks the systems with the new exploit. Key point: The term "0-day" describes any bit of information in the community, whether it is serial numbers, lists of proxies, or passwords to porn sites. As soon as such information becomes well-known and exploited by large numbers of people, it is then fixed by the victim. Information has a "half-life": the older it is, the less value it has. From Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

100VGfrom VERA

100 Voice Grade [technology]

2-Disk Xwindow embedded Linuxfrom LWN Distribution List

Mungkie Associates Inc. provides 2-Disk Xwindow embedded Linux. The distribution is intended to be a demonstration of Mungkie Associates' embedded appliance development environment, showing the sort of environment that can be created for small appliance GUI systems. It is further intended to give a minimal Linux base system on 1 disk and a fully expandable X system implementation on a second disk. The two disks can be used together for a minimal system or the X disk can be used seperately on any libc2.1 linux system. The source tree is compiled on Debian and the /lib/ files taken directly from the Debian-2.2.3 distribution. The 2-disk system is free for personal use, but restrictions apply to commercial usage. Version 1.4rc802 was released November 6, 2002. Version 1disk1.0 final was released January 18, 2003. A 1disk 1.0 update was released February 5, 2003. Version 1.0.8 (Source code) was released May 30, 2003.

2S2Dfrom VERA

Double Sided - Double Density (FDD)

3dchessfrom Binh

3D chess for X11 3 dimensional Chess for X11R6. Three boards, 96 pieces and 26 directions. From Debian 3.0r0 APT 3Dwm is a 3D window manager for Linux

3DDDIfrom VERA

3D Device Dependent Interface (MS), "3D DDI"

3DRAMfrom VERA

3 Dimensional Random Access Memory (RAM)

3dwm

The 3dwm project is working with the creation of a three-dimensional worspace manager that can run in the 3D Cube as well as on desktop computers. Note that wm does not stand for the term window manager. It is a bit misleading; 3dwm is not a window manager in the true sense of the word, but rather more of a gerneral user environment. The window manager functionality of the system is merely the tip of the iceberg; 3Dwm contains general primitives for building applications with three-dimensional interfaces. From 3dwm [http://www.tldp.org/LDP/ Linux-Dictionary/html/index.html] http://www.tldp.org/LDP/ Linux-Dictionary/html/index.html

3dwm-clock

A 3Dwm apps The 3Dwm clock application (tdwm-clock) is the first real application that is even remotely useful. It makes use of the 3Dwm Nobel API, including the new solid modeling support, to create a three-dimensional analog clock displaying the current time. From Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

3dwm-csgclient

A 3Dwm client A simple client which is builded using new libsolid. This is only an example on how libsolid work. From Debian 3.0r0 APT [http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/ LDP/Linux-Dictionary/html/index.html

3dwm-geoclient

A 3Dwm client This is a very simple 3Dwm client that connects to the exported GeometryKit in the server, creates a Geometry, loads a 3D file from the local system (in this case a simple model of an office, which also happens to be Rob's room), and passes it to the 3Dwm server. The 3Dwm server will happily render any geometry that is created, so running geoclient several times will add more geometries to the graphical output. Please note that you may need to zoom out (using the 'X' key) to see graphical output. The geoclient is able to open native .raw files as well as standard 3ds files (using MeshIO). In other words, you may experiment by loading other files than the supplied office model to the 3Dwm server. From Debian 3.0r0 APT [http://www.tldp.org/LDP/Linux-Dictionary/html/ index.html] http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

3dwm-pickclient

A 3Dwm client This is an example showing how libzorn work. From Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

3dwm-server

Binary server daemon This package contains display binary server daemon. From Debian 3.0r0 APT [http://www.tldp.org/LDP/Linux-Dictionary/html/ index.html] http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

3dwm-texclient

A 3Dwm client This is a simple client used for testing the 3Dwm texture capabilities. From Debian 3.0r0 APT [http://www.tldp.org/LDP/ Linux-Dictionary/html/index.html] http://www.tldp.org/LDP/ Linux-Dictionary/html/index.html

3dwm-vncclient

A 3Dwm client This will open a connection to the VNC server from the 3Dwm server, and the graphical output will be displayed on a single quad in the 3Dwm world (you may need to zoom out to see it). Currently, vncclient supports no interaction with the VNC window (the bindings and the actual communication code has been implemented, only the 3Dwm side is missing). From Debian 3.0r0 APT [http://www.tldp.org/LDP/Linux-Dictionary /html/index.html] http://www.tldp.org/LDP/Linux-Dictionary/html/ index.html

3GIPfrom VERA

3rd Generation . Internet Protocol (org., IP, GPRS, WLAN, mobile-systems), "3G.IP"

3GLfrom VERA

3rd Generation Language

3GPPfrom VERA

Third Generation Partnerships Projects (org.)

4.2from Jargon Dictionary

/for' poynt too'/ n. Without a prefix, this almost invariably refers to BSD Unix release 4.2. Note that it is an indication of cluelessness to say "version 4.2", and "release 4.2" is rare; the number stands on its own, or is used in the more explicit forms 4.2BSD or (less commonly) BSD 4.2. Similar remarks apply to "4.3", "4.4" and to earlier, less-widespread releases 4.1 and 2.9.

44bsd-rdist

4.4BSD rdist. This is the traditional rdist from 4.4BSD Lite with FreeBSD fixes. It is provided for compatibility with third-party rdist implementations. This is the binary package for 4.4BSD rdist. From Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

4GLfrom VERA

4th Generation Language

4GTfrom VERA

4 GB [RAM] Tuning (RAM, GB)

4Suite

The 4Suite package contains XML-related tools and libraries for Python, including 4DOM, 4XSLT, 4XPath, 4RDF, and 4XPointer. 4DOM is animplementation of the World Wide Web Consortium's (W3C) standard DOMAPI for HTML and XML content manipulation. 4DOM provides full distributed-object support based on the IDL used in the formal DOM specification. 4XSLT is an XSLT processor, which can be used to renderXML documents as customized and stylized HTML for current Web browsers. 4XSLT also provides a powerful programming API forapplications to use for low-level, customized transformations of XML documents. 4XPath is a library implementating the W3C's XPath language for indicating and selecting portions of an XML document. 4RDF is a toolkit and library for RDF processing. 4XPointer is a toolkit for processing fragment identifiers for URI references which locateresources of Internet media type text/xml. From Redhat 8.0 RPM [http://www.tldp.org/LDP/ Linux-Dictionary/html/index.html] http://www.tldp.org/LDP/ Linux-Dictionary/html/index.html

5GLfrom VERA

5th Generation Language

6tunnel

TCP proxy for non-IPv6 applications 6tunnel allows you to use services provided by IPv6 hosts with IPv4-only applications and vice versa. It can bind to any of your IPv4 or IPv6 addresses and forward all data to IPv4 or IPv6 host. It can be used for example as an IPv6-capable IRC proxy. From Debian 3.0r0 APT [http://www.tldp.org/LDP/Linux-Dictionary/html/ index.html] http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

8-character passwordfrom Hacking-Lexicon

Some systems, like Win9x and Solaris, limit the user to 8 characters in the password. Key point: Security conscious users of such systems need to make sure they use a more random mix of characters because they cannot create long passwords. Key point: Password cracking such systems is a little easier.

8.3 filename

A filename corresponding to the standard MS-DOS gleaming conventions, which restrict filenames to 8 characters and optional extensions to 3 characters. From QUECID Such restictions can prove to be an infuriating problem like when transfering files across a heterogenous network such as between Windows and Linux machines. Since older versions of Windows only support 8.3 style filenames files transferred to it will be truncated. For example, "C:\Program Files" may appear to be "C:\Progra~1" From Binh http://www.tldp.org/LDP/Linux-Dictionary/html/index.html http:// www.tldp.org/LDP/Linux-Dictionary/html/index.html

802.11from Redhat-9-Glossary

Standard protocol for radio-frequency wireless data transmission and networking. Also called Wi-Fi.

80211HRfrom VERA

802.11 High Rate (IEEE, WLAN), "802.11/HR"

822-datefrom whatis

Command to print date and time in RFC822 format

8PSKfrom VERA

8 Phase Shift Keying (EDGE, mobile-systems)

8VSBfrom VERA

8-Vestigial Side Band, "8-VSB"

9menu

Creates X menus from the shell. This is 9menu, a simple program that allows you to create X menus from the shell, where each menu item will run a command. 9menu is intended for use with 9wm, but can be used with any other window manager. From Debian 3.0r0 APT [http://www.tldp.org/LDP/ Linux-Dictionary/html/index.html] http://www.tldp.org/LDP/ Linux-Dictionary/html/index.html

9wm

An emulation of the Plan 9 window manager 8-1/2. 9wm is an X window manager which attempts to emulate the Plan 9 window manager 8-1/2 as far as possible within the constraints imposed by X. It provides a simple yet comfortable user interface, without garish decorations or title-bars. Or icons. And it's click-to-type. From Debian 3.0r0 APT [http://www.tldp.org /LDP/Linux-Dictionary/html/index.html] http://www.tldp.org/LDP/ Linux-Dictionary/html/index.html

[from whatis

check file types and compare values

~userfrom Hacking-Lexicon

On UNIX, a home directory can be referenced by using a tilde (~) followed by their login name. For example, "ls ~rob" on my computer will list all the files in "/home/rob". Key point: Web-servers often allow access to user's directories this way. An example would be http:// www.robertgraham.com/~rob. Key point: A big hole on the Internet is that people unexpectedly open up information. For example, the file .bash_history is a hidden file in a person's directory that contains the complete text of all commands they've entered into the shell (assuming their shell is bash, which is the most popular one on Linux).