Expands to the full pathname used to invoke this instance of bash. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Expands to the version number of this instance of bash. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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''. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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:~''. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
The number of commands to remember in the command history (see HISTORY below). The default value is 500. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
The home directory of the current user; the default argument for the cd builtin command. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Automatically set to a string that uniquely describes the type of machine on which bash is executing. The default is system-dependent. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
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. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
The filename for the readline startup file, overriding the default of ~/.inputrc (see READLINE below). From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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). From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
The previous working directory as set by the cd command. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Automatically set to a string that describes the operating system on which bash is executing. The default is system-dependent. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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:.''. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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 From Complete-Idiot's Guide to Linux http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
If set, the value is executed as a command prior to issuing each primary prompt. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
The value of this parameter is expanded (see PROMPTING below) and used as the primary prompt string. The default value is ``bash\$ ''. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
The value of this parameter is expanded and used as the secondary prompt string. The default is ``> ''. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
The value of this parameter is used as the prompt for the select command (see SHELL GRAMMAR above). From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
The current working directory as set by the cd command. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Incremented by one each time an instance of bash is started. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
Used by OS/2 to keep track of archived files From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
native format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (GEOWorks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Used to number old (backup) versions of files (for example, CONFIG.SYS when changed by an installation program); also used to number From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database index files used by (Superbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Backup file (Iomega Backup) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Backup data file (Iomega Backup) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lotus 123 97 file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Smartmaster file (Lotus 1-2-3 '97) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Documenting wizard list (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Two-dimensional drawing file (VersaCAD) (http://www.versacad.com/vcadhome.htm) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
and 3GR VGA Graphics driver/configuration files (Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A file for use in an 80386 or higher microprocessor From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Three-dimensional drawing file (VersaCAD) (http://www.versacad.com/vcadhome.htm) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
3D NURBS modeler, (Rhino) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A file in 3D Studio (for DOS) format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (Used by digital cameras) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled code (Informix 4GL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code (Informix 4GL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music file (Quartet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music mod file (Composer 669)(Unis Composer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Tracker module (Composer 669) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source file (Assembly) (Similar to Microsoft Assembler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Screen files used in the installation and instruction on use of such applications as Microsoft Codeview for C From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Archive. lib*.a is a static library. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Library file (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Object code library From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Authorware 3.x library From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Authorware MacIntosh file (unpackaged) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Authorware Windows file (unpackaged) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Authorware 4.x library From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Authorware MacIntosh file (unpackaged) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Authorware file (packaged without runtime) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Authorware Windows file (unpackaged) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Authorware 5.x library From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Authorware Windows file (unpackaged) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audible audio file (commonly used for downloadable audio books) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Authorware shocked file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Authorware shocked packet From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Applix Builder file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Adobe Binary Screen Font From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Backup file (PrintMaster Gold) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel Draw AutoBackup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio album file (HitPlayer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Applix Builder Turbo file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MPEG Audio Sound file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sometimes used to denote an abstract (as in an abstract or summary of a scientific paper) AutoBackup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Standard GNU compiler output file for a PC platform From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
HTTP animation file (Microsoft Agent) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project Manager Workbench file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ACBM Graphic image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
DR-DOS Viewmax file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Character definiton file (Microsoft Agent) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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 character file (Microsoft Agent) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ACI development appraisal (ACIWEB) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel Draw 6 keyboard accelerator file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dynamic Link Library (DLL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Interplay compressed sound file (Fallout 1,2, Baulder's Gate) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Windows system directory file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Office Assistant Preview file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
American College of Radiology file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Character structered storage file (Microsoft Agent) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Action Presentation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Documenting wizard action diagram (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FoxPro Foxdoc Action Diagram From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Office Assistant Actor file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Used to Compress and decompress audio data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
After Dark screensaver From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://search390.techtarget.com/sDefinition/0,,sid10_gci211523,00.html> Ada source text file (non-GNAT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ada source text body file (GNAT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
HP 100LX Organizer Appointment database From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Scanstudio 16 color Bitmap Graphic file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
OS/2 adapter driver file used in the boot process From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Amiga <http://WhatIs.techtarget.com/definition/0,,sid9_gci211557,00.html> disk file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
AutoCAD device-independent binary plotter file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
QEMM Mca adaptor description library From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
After Dark MultiModule screensaver (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
Lotus 1-2-3 Add-In file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Astound Dynamite file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dynamic Page file (AOLserver) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FaxWorks Faxmodem setup file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
After Dark Randomizer screensaver From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Smart Address address book From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ada source text specification file (GNAT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
AdTech Fax file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
HP NewWave datafile for card applications From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Archetype Designer Document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dynazip Active Delivery script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lotus Approach dBase Index From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Packed ADF file (Extracts with WinZip) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Author/Editor file (SoftQuad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ArcExplorer project file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ABC FlowCharter 2.0 Flowchart From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ABC Flowchart From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Apple Sound file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Truevision Bitmap graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Adobe metrics From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
HP NewWave Cardfile application From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Applix graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Adobe Illustrator drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel Trace drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio Interchange File, a sound format used by Silicon Graphics and Macintosh applications From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Similar to AIF (compressed) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://WhatIs.techtarget.com/definition/0,,sid9_gci213472,00.html> Similar to AIF From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
AOL Instant Messenger Launch file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
AIN Compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
APL transfer file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ACDSee Image Sequence From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Velvet Studio Instruments file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Xerox Arry of Intensity Samples Graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
HP NewWave Cardfile Application data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Contains all A-keywords in the RoboHELP Help Project Index Designer not associated with topics From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
European Telephony audio From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
JASC Image Commander album From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document file (SAP proprietary format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Alias Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
X Window System font alias catalog. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Arts & Letters Library From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows General printer information file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Alias Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect Library Menu From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Applix SHELF Macro From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
DSMIA/Asylum module music (Crusader,No Remorse,Aladdin) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music file (Advanced Module Format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ACTOR System image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
AMGC Compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Annotation file (Cocreate SolidDesigner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Extreme's Tracker module From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Velvet Studio music module (MOD) file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (Sterling Software) (Groundworks COOL Business Team Model) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Canon Computer Pattern Maker file that is a selectable list of From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Windows Animated cursor From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
DeluxPaint Animation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Windows 3.x Help annotation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ANSI <http://searchCIO.techtarget.com/sDefinition/0,,sid19_gci213776,00.html> Text file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
SimAnt for Windows saved game From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Nokia 9000 Add-on software From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Applicatio binary object template file (ZenWorks snAPPshot) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Applix Presents file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WHAP Compressed Amiga archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled application file (Centura Team Developer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lotus 1-2-3 Printer driver From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dynamic application library file (Centura Team Developer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lotus 1-2-3 Printer driver From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lotus 1-2-3 Printer driver From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project file (Allaire) (Created by Homesite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Application Program Interface; used by Adobe Acrobat <http://searchCIO.techtarget.com/sDefinition/0,,sid19_gci211517,00.html> From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lotus 1-2-3 Printer driver From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
APL Workspace file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Application library file (Centura Team Developer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
dBase Application Generator Object From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
DR-DOS Executable Application From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FoxPro Generated Application From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Generated application or active document (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Normal mode application file (Centura Team Developer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Symphony Add-in Application From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ArcView project file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Employee Appraiser Performance Review file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lotus Approach 97 View file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Advanced patching systems with error checking, (Similar to IPS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Visual C++ file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lotus Approach Data view file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text mode application file (Centura Team Developer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Borland C++ Appexpert database From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lotus Approach Paradox-Specific information file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Applix data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
LH ARC (old version) compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
SQUASH Compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Automatic Response file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ARI Compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Aristotle audio file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Robert Jung ARJ compressed archive (ARJ) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ARC File Archiver CPM/Port archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
AOL v4.0 organizer file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Atari Cubase Arrangement From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
AOL Image file compressed using the Johson-Grace compression algorithm From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Canon Crayola art From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Clip Art From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
First Publisher Raster graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ray Tracer file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Xara Studio drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ARX Compressed Archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Applix Spreadsheet From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
ASCII <http://WhatIs.techtarget.com/definition/0,,sid9_gci211600,00.html> text file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PGP <http://searchSecurity.techtarget.com/sDefinition/0,,sid14_gci214292,00.html> armored encrypted <encrypti.htm> file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Astound Presentation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lotus 1-2-3 Screen driver From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Advanced Streaming Format (ASF) description file; opens From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WinWord AutoSave file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Velvet Studio Sample file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lotus 1-2-3 Screen font From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Advanced Streaming Format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music file (Electronic Arts) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
StratGraphics Datafile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
TASM 3.0 Assembly language header From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Borland C++/Turbo C Assembler Include file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
Pro/E assembly file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Astound Dynamite Object From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci213787,00.html> Active Server Page (an HTML file containing a Microsoft server-processed script) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Astound Presentation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Procomm Plus setup and connection script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Astound multimedia file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Claris Works "assistant" file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
DataCAD Autosave file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Cheyenne Backup script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Advanced Streaming Redirector file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Video file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Aldus Persuasion 2.0 Auto Template From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Adobe Type Manager data/info file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
AT&T Group 4 bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
AnyTime Deluxe for Windows personal information manager file from From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio format (original Sun Microsystems generic sound file). From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio U-law (pronounced mu-law) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sun/NeXT/DEC/UNIX sound file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio file (Westwood Studios) (Kyrandia 3,C&C,RedAlert,C&C:TS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ChiWriter Auxilliary Dictionary file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
TeX/LaTeX Auxilliary Reference file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Avagio Publication From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Inculan Anti-Virus virus infected file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Audio Video Interleaved file for Windows movie From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Video format. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio Visual Research file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Application Visualization System file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Stardent AVS-X Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
File Extension (ArcView) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Applix Words file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
HP AdvanceWrite Text file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FaxView Document image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
awk program source file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
AWK Script/Program From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Animation Works Movie From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Telsis file for digitally stored audio From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
StatGraphics Data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ArcIMS XML project file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ASCII application object template (ZenWorks snAPPshot) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ARJ compressed file from a multi-volume archive (xx = a number from 01 to 99) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Applause Batch list From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
1st Reader Mono binary screen image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Atari/Macintosh black and white graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
1st Reader Mono and color binary screen image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ABC Ventura publisher printer font From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Helix Nuts and Bolts file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raw graphic file (Piclab Plane II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Oracle bad file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Backup file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ballade Music score From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
dBase Application Generator Horizontal menu object From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
BASIC <http://searchVB.techtarget.com/sDefinition/0,,sid8_gci213805,00.html> source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Batch file <http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci211642,00.html> From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Papyrus Database backup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
TeX/BibTeX Bibliographic reference file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Deluxe Paint Bitmap image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bulletin Board Sytem text From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Batch Process Object (dBase Application Generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datalex Entry Point 90 Data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Works Communications file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitstream Outline font description file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Borland C++ Makefile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Borland C++ 4.5 Environment settings file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Works Dababase file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Egret Datafile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
West Point Bridge Designer file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Publisher Border From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitstream Outline font description From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bradford 2 Font From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Windows 95 Briefcase Document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font Metrics file (Unix/Mainframe) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax document file (BitFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Backgammon Game file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
OS/2 Graphic array From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Borland Graphics Interface Driver From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Flight Simulator Scenery file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
pcAnywhere Host file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Binary <http://WhatIs.techtarget.com/definition/0,,sid9_gci211661,00.html> file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bibliography file (ASCII) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
bibtex LATEX bibliography source file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
TeX/BibTeX Literature Database From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
GroupWise initialization file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image Capture Board Binary Image black & white graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
XLITE 3D file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Binary <http://WhatIs.techtarget.com/definition/0,,sid9_gci211661,00.html> file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
OS/2 Bios file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
X11 Bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Backup file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
JetFax Faxbook file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Document backup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Backup file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Timed backup file for document window 1 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Timed backup file for document window 2 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Timed backup file for document window 3 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Timed backup file for document window 4 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Timed backup file for document window 5 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Timed backup file for document window 6 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Timed backup file for document window 7 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Timed backup file for document window 8 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Timed backup file for document window 9 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
TurboVidion Dialog Designer Backup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
IBM BookManager Read bookshelf file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Works Spreadsheet Backup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FontEdit Fontset mirror image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Resource archive (DreamWorks),(Neverhood) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
BASIC Bloadable picture file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Alias Wavefront Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Temporary file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Windows system Bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Apogee BioMenace data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel Gallery file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Windows Help bookmark From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Bitmap file image format. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Windows or OS/2 bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Instrument bank file (AdLib) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Instrument Bank file (AdLib) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sound effects bank file (Electronic Arts) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive library file (Microsoft Booasm.arc) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bill of materials file (Orcad Schematic Capture) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Booasm.arc Compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Adobe FrameMaker Book From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lotus Notes file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Business Plan Toolkit Chart From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Borland Delphi 4 packed library From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Works Document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CorelDraw Bitmap fills file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Truevision Targa Bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
BrioQuery file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bridge Script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Eagle Layout file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Brooktrout Fax-Mail file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Application file associated with financial institution(s) loan applications From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A file for browsing an index of multimedia options From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
DbBRZ file for very large Db backup or restore From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Apogee Blake Stone data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
BSARC Compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Apple II Compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fortran Pwbrmake Object From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MS Developer Studio (MSDev) browser information From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Quake map file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Bookshelf Find Menu shell extension From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Batch <http://search390.techtarget.com/sDefinition/0,,sid10_gci211641,00.html> file used by Norton Utilities From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database file (Btrieve 5.1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Backup disk for Quicken From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bugs and Problems file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CakeWalk Audio Bundle (a MIDI <http://WhatIs.techtarget.com/definition/0,,sid9_gci212572,00.html> program) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Backup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Buttons! Button definition From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Movie data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Overflow file below insert point in document 1 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Overflow file below insert point in document 2 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Overflow file below insert point in document 3 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Overflow file below insert point in document 4 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Overflow file below insert point in document 5 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Overflow file below insert point in document 6 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Wordperfect for Windows Overflow file below insert point in document 7 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Overflow file below insert point in document 8 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Overflow file below insert point in document 9 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
SGI Black and White image file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Silicon Graphics Raw red,green and blue bytes file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual Baler Spreadsheet application From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Kermit Beware buglist From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Business Wave file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
BYU Movie From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bzip compressed file (Inix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bzip compressed file (Unix) (replaces Bz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
File compressed with the bzip2 compression program. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Atari/Macintosh black and white graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
C code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
C program source code. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Site configuration for Secure Remote (CheckPoint VPN) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sphinx C-- Source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ventura Publisher Print file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Typhoon wave From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Computer Innovation (C86) Source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Telnet Server Initial cache data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft cabinet file (program files compressed for software distribution) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
dBase IV Executable file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Softdesk Drafix Cad file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Catalog file (Microsoft Clip Gallery v. 2.x,3.x,4.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Calendar schedule data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CALS Compressed Bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
SuperCalc 4/5 Spreadsheet From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Casio camera file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Navigator Fax From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed music file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Telix Session Capture file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ventura Publisher Caption From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
AtHome assistant file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Comma-delimited ASCII file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
dBase Catalogue file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Quicken IntelliCharge categorization file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft clean boot <http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci211696,00.html> file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CubiCalc Fuzzy Logic System file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Column binary file (used in IBM mainframe systems) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Cobol Source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
XLib Compiled Bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Generic Computer based training file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
C++ Source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual dBASE custom class file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
C++ program source code. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
cc:mail archive file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual Basic Animated Button configuration file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Curtain Call Native bitmap graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (Calendar Creator Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Multimedia Viewer configuration file used in OS/2 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Symphony Communications Configuration file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel Chart From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Intalk Communication Command Language From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lotus CC:Mail "box" file (for example, INBOX.CCM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CyberChat data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
XBTX Graphics From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macromedia Director Shockwave cast file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CD Audio Track From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CardScan Database (CardScan) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Clipboard file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Conceptual model backup file (PowerDesigner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
TCU Turbo C Utilities Main database From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci213841,00.html> Microsoft Channel Definition Format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Netcdf Graphic file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compact Disk filing system (WindRiver) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Phillips Compact Disk Interactive file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Atari Calamus Document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Conceptual data model file (PowerDesigner Data Architect) (Sybase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Conceptual model file (PowerDesigner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual dBASE custom data module From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel Draw Vector drawing file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raw Audio-CD data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel Draw template From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CorelDraw Data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel Draw compressed drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
The FarSide Computer Calendar Main CE file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Tempra Show Bitmap graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
AutoDesk Animator Cel Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CIMFast Event Language file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Certificate file (MIME x-x509-ca-cert) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Imake Configurtion file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file or script. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Comptons Multimedia file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CorelFLOW Chart From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ColdFusion <http://searchDatabase.techtarget.com/sDefinition/0,,sid13_gci211812,00.html> template From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel FontMaster file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Creative FM-Music From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual dBASE Windows customer form From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Atari Calamus Font data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
TCU Turbo C Utilities C form object From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
The Complete Fax Portable fax file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ventura Publisher Display font file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://searchDatabase.techtarget.com/sDefinition/0,,sid13_gci213846,00.html> Common gateway interface script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Executable script that produces web page output. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Computer Graphic Metafile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Clipper 5 Header From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
OS/2 configuration file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Harvard Graphics 3.0 Chart From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Charisma 4.0 Presentation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FontChameleon Font descriptor From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
pcAnywhere remote control file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ChiWriter Document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
File fragments saved by Windows Disk Defragmenter or ScanDisk From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Temporary file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration History Log From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled HTML file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ethnograph Data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ventura Publisher Chapter file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Character Sets (Font file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ChartMaster dBase Interface file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ChartViewer file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Harvard Graphics Vector <http://WhatIs.techtarget.com/definition/0,,sid9_gci528553,00.html> file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CalTech Intermediate Graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Easy CD Creator image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
pcAnywhere caller file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Clip Gallery download package file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sim City 2000 file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
OS/2 change control file that tracks changes to an INI file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
TCU Turbo C Utilities Database Index From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
iD/Apogee Commander Keen 1 data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
iD/Apogee Commander Keen 2 data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
iD/Apogee Commander Keen 3 data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
iD/Apogee Commander Keen 4 data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
iD/Apogee Commander Keen 5 data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
iD/Apogee Commander Keen 6 data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Borland C++ Keyboard mapping file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Generic LISP Source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Layout file (Adaptec Easy CD Creator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Java class From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Disk Catalog database From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Cricket Software Clicker File From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Cloe Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Clipper 5 Compiler Script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Quattro Pro Clip art From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Windows Clipboard From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
1st Reader Binary color screen image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PhotStyler Color defintion From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
C++ Class Definition From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual Basic Class Module From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Craftman Data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database file in plain text format (APPLIX TM1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
1st Reader External Command Menu From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Command file for Windows NT (similar to a DOS .BAT file), OS/2 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
dBase-II program file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
DOS CP/M command file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel Metafile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Chessmaster saved game From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Card Shop Plus file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CEnvi Batch file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Address document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CorelDRAW 4.0 Postscript Printer Header From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
JPEG <http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci212425,00.html> Bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Word for DOS User dictionary From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Route 66 Address Document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MediaPlayer Movie From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel Move animation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel Presentation Exchange image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raw cyan, magenta, yellow, and black bytes file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CNC General Program data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file used by Telnet, Windows, and other applications with varying internal formats From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Windows application menu options and setup file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compuworks Design Shop file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Windows (or other) system content files for the help index and other purposes From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Conversion files (WS_FTP Pro) files that will be converted from (Example) "HTML-"HTM" for upload From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Word for Windows Data conversion support file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect for Windows Temporary file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
COBOL Source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
trueSpace 2 object From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
dBase Application Generator Template source file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FORTRAN Compiled code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft C compiler output as displayable machine language/assembler with original C as comments From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Video Text file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
AutoDesk Animator Color Palette From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Multiplan Spreadsheet From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Command file (program) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
attempts to compile the source files of a Help system From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Simdir Configuration file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CP8 256 Gray Scale image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Complaints Desk Script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel PrintOffice file (drawing) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax Cover document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax Cover document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
The Complete Fax (Fax file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (Corel Print House) see CPO From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ColorLab Processed Image bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft MS-DOS code page information From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CeQuadrant CD Project From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compel Presentation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Control Panel Module From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel color palette From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (Corel Print Office) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
C++ Source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CA-Cricket Presents presentation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel Presents presentation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Central Point PC Tools Backup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Coloured postscript From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CA-Cricket Presents Template From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel Photo-Paint image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
dBase Encrypted Memo From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macintosh Compressed Archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel Presentation Exchange compressed drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (Copy Books) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
COMPOZ Music Text From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Check file (Win-SFV32) (Fantasia Software) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Circular reference file (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Windows 3.x Cardfile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Zortech C++ cross-reference From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (Microsoft Golf) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel Presents run-time presentation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
dBase IV Encrypted database From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual dBASE custom report From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect 5.1 for Windows File Conversion resource From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Certificate file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Crontab file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Oracle Terminal settings information From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CRUSH Compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Comma deliminated text From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Statistica/w Graph file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
C shell script files (Hamilton Labs) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
csh shell script. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Borland C++ 4.5 Precompiled header From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Script file (Kodak Dc265 Camera) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Customer service data and outcome file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PC Emcee On-Screen image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci211749,00.html> Cascading Style Sheet (MIME) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Statistica/w Datasheet From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Stats+ Datafile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macromedia Director "Cast" (resource) file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Comma-separated values file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CompuShow Adjusted EGA/VGA Palette From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A graphic file associated with the Paint Shop Pro Graphic Editor From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Scitex CT bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PC Installer Control From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Symphony Character code translation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
dBase IV Control From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Used in general for files containing control information. FAXWorks uses it to keep information about each fax sent and received. From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Online Course Text From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pretty Good Privacy (PGP) Ciphertext file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual Basic User control binary file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Cue Cards data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Cursor library file (IconForge) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Windows Cursor From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sun Microsystems Cursor From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dr Halo Bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel Versions archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft CodeView information screen From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Canvas drawing file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Claris Works data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Claris Works template From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macromedia Director protected (not editable) "Cast" (resource) file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
C++ source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
2D/3D object file (3-D Fassade Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Commodore 64 emulator disk image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Windows Registry Backup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data access page (Microsoft Access 2000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A data file extension used to designate an error message in a From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Extension used for some MPEG <http://WhatIs.techtarget.com/definition/0,,sid9_gci212601,00.html> files From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect Merge Data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Borderland's Paradox 7 table database From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft's Visual FoxPro <http://searchDatabase.techtarget.com/sDefinition/0,,sid13_gci213705,00.html> database container file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Enable database (can be opened with Excel 97) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Oracle 8.1.x tablespace file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
dBase Database Backup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Schematic backup file (Orcad Schematic Capture) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled program file (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Paradox Memo From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
dBase Text Memo From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Memo field file (Flexfile 2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Windows 9.x Database file (DataBoss) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
DataBeam image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
CAD file (DesignCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CAD file (DesignCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
DataCAD Drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document Content Architecture Text file (IBM DisplayWrite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual Basic Active designer cache From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (Dyadic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Disk Image file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Digital Imaging and Communications in Medicine (image and data) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
DCM module From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data CodePage (OS/2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Shockwave file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap Graphics (Quark XPress) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (ACT! Activity file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Desktop Color Separation file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database Dictionary file (Clarion Database Developer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database SpellCheck Dictionary (Harvard Graphics 3.0-Symphony) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft's Visual FoxPro <http://searchDatabase.techtarget.com/sDefinition/0,,sid13_gci213705,00.html> database container file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Delphi compiled unit From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap Graphics file (Multipage PCX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax image (based on PCX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft's Visual FoxPro <http://searchDatabase.techtarget.com/sDefinition/0,,sid13_gci213705,00.html> database container file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed Archive (Macintosh DISKDOUBLER) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap Graphics file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image File (DISKDUPE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Digital Equipment or Compaq file. Used for storing images and their From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Device Driver Profile (OS/2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Debian package for the Debian distribution. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Debug Script (DOS Debug) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Assembly Header file (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
C++ definition file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Define Module file (3-D Fassade Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
SmartWare II data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Oracle 7 de-install script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A file with USGS standards for Digital Elevation Models (Vista Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Demo file (Descent) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (Vista Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual Basic Setup Wizard Dependency file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Certificate file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Device Driver From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macintosh SoundCap/SoundEdit recorded instrument file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Encrypted zip file (DES Encryption) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data Flow Diagram Graphic (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Outline Font description (Digifont) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Default Program Settings (Signature) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data Flow Diagram model (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sound File (Delight) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printing Form value (Microsoft Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microstation95 CAD drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Diagnostics Report From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dependency Information file (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphic file (Dr. Halo II-III PIC Format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Gauss) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Diagraph Graphics file (Computer Support Corporation) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Device-independent bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dictionary file (Lotus Notes, Domino) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dictionary file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Digital imaging and communications in medicine file (DICOM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data Interchange Format spreadsheet From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data Interchange Output file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database file (VisiCalc) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (Output from Data Interchange Format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Output of the diff program indicating the difference between files or source trees. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Digilink file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sound Designer I audio From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dialing Directory (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Directory (VAX) (DEC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macromedia Director file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Movie (MacroMind Director 4.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
X Window System font/other database directory. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Distribution file (VAX Mail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ray Tracer file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Thesaurus file (CorelDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Description file (Description in ZIP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (Ray Traced DKBTrace) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
C++ Dialogue Script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci213902,00.html> Dynamic-link library file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Export/Import Filter (CorelDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Downloadable sound From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Interactive music architecture (IMA)(Microsoft),(Blood2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Setup file (Norton DiskLock) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual dBASE data module From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Packed Amiga disk image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
X-Trakker music module (MOD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Demo file (Derive) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dump file (Screen or Memory) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed Archive (Amiga DISKMASHER) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual Basic User document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
DisplayWrite document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document format (Interleaf) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FrameMaker or FrameBuilder document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Word document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordPerfect document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordStar document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Screen Saver file (Laughing Dog Screen Saver) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dependency Information file (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
External Command file (1st Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Network Driver file (PKT_DIS.dos) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Line-Type definition (CorelDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Word Document Template (Microsoft Word for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (MultiMate 4.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
User document binary form (Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Description out of Zip (VENDINFO) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Calendar file (Daily Planner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (DataPhile) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Borland Delphi 3 packed library From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project header (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Publication file (Publish-It!) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Directory file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Acorn's object-based vector image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Design rules check report file (Orcad Schematic Capture) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Display Resource file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Device Driver (Required to make a device function) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Driver <http://searchStorage.techtarget.com/sDefinition/0,,sid5_gci212002,00.html> From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lotus Freelance Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pro/E drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Vector graphics (Micrografx) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Micrografx Designer Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Vector Graphics (Micrografx) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Discard file (Oracle) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database file (DataShaper) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Micrografx Designer v7.x file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
DooM saved game From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Driver file (Novell Netware) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project Desktop file (Borland C++/Turbo Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Digital Sound Module (DSI) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dynamic Studio music module (MOD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music module file (DSIK) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Design (Object System Designer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ODBC Data source From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Schematic file (Orcad Schematic Capture) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Display parameters (Signature) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics Display driver (Dr. Halo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Developer Studio project From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel QUERY From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Driver Resource (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual Basic Active designer file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Digital Sound file (Digital Soup)) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Screensaver file (DCC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Distribution file (PC-RDist, by Pyzzo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Embroidery machines graphic file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Desktop settings (Borland C++ 4.5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Developer Studio workspace file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual Basic Active designer binary file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Turbo C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
World Bank's STARS data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<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 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Digital terrain elevation data (geographic data format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database file (PFS-Questions & Answers) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Symantec Q&A relational database From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Module file (DigiTrakker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Desktop layout file (SecurDesk!/SecurDesk! LV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Template file (Pressworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text Document (Timeworks Publisher 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file fork (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Dial-up Networking Export file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Duplicate Backup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Digital video (MIME) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file associated with camcorders (DV Studio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Binary file (TeX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Device Independent Document (TeX) (LaTeX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Device-independent file. Formatted output of .tex LATEX file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Desqview Program information (DESQview) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Device parameter file (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Drawing file (DesignCAD for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed Archive (DWC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
DiamondWare digitized file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Drawing Web file (Microsoft WHIP autoCAD reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Vector graphic (Autodesk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
AutoCAD Drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
AutoCAD drawing, or older Generic CAD drawing file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document file (DeScribe) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Workspace file (Dyadic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Digital Electric Corporation (DEC) Data exchange file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data Exchange File From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Drawing Interchange (eXchange) format,a text representation of the binary DWG format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Drawing Interchange Format (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax document (Fujitsu dexNet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macromedia Director protected (not editable) movie file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Coverage export file (ArcInfo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Exchange file (Arc/Info) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Error Checking Object file (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
EDMICS image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
EDMICS image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ensoniq ASR disk image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ROOTS3 Geneological data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Element Definition document (FrameMaker+SGML documents) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ensoniq EPS disk image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ensoniq KT disk image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ensoniq SQ1/SQ2/KS32 disk image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ensoniq SQ80 disk image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Default settings (VAX Edt editor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ensoniq VFX-SD disk image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Button Bar for Equation editor (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ensoniq ASR file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ensoniq EPS file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ensoniq KT file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ensoniq SQ1/SQ2/KS32 file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ensoniq SQ80 file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
High Resolution Screen Font (ChiWriter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ensoniq VFX-SD file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax document (Efax Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax Document (Everex EFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
EGA Display font (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lisp program source. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lisp Source code (eMacs) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
eMac Lisp Source code (byte-compiled) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Theme-Pack file for (Microsoft FrontPage) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Event List Text file (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Embedded bank File (Everest) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ABT Extended MoDule From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Enhanced Windows Metafile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Outlook Express mail message (MIME RFC 822) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Enhanced Menu System Configuration file (PC Tools) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Terminal Emulation Data file (BITCOM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Encoded file (UUENCODEd File, Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music file (Encore) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Video file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Arrow-Head Definition Table (CorelDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Neutral Format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Chart Graphics file (EnerGraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dictionary Engine file (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Enveloper Macro (WOPR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Environment file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Publication file (Express Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Enhanced Perl-parsed HTML From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document file (Express Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Encapsulated Postscript image file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Encapsulated Postscript Vector graphics (Adobe Illustrator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer font (Epson, Xerox, Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Adobe Level II Encapsulated Postscript From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Encapsulated PostScript From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Adobe Encapsulated Postscript Interchange From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Equation file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ERWin file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Entity Relationship Diagram graphic file (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Entity Relationship Diagram Model file (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compilation error file (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Stores the error messages that result when the RoboHELP Help From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ERWin file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Extended Shell Batch file (DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Distributable support library file (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ESPS audio file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document file (Ethnograph 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Structure Enhanced text (SetText) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ensoniq ESP family compacted disk image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Event Log (Microsoft Windows NT, 2000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (WordPerfect for Windows Envoy) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text Document (Express Publisher for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Encarta document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Device Driver file (Harvard Graphics 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Exclude file for Optimize (do not process, QEMM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Word Exclusion Dictionary file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source Code file (Rexx VM/CMS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Executable <http://WhatIs.techtarget.com/definition/0,,sid9_gci212086,00.html> file (program) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Saved chat (ICQ) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ASCII binary transfer file (WS_FTP PRO) (IPSWITCH Software) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Second extended file system (Linux) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Third extended file system (Linux) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed file (Edify.zip) (Edify Electronic Workforce Backup Utility) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed file archive (FREEZE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FORTRAN file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax document (Perfect Fax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dos screen text font (height= 6 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dos screen text font (height= 7 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dos screen text font (height= 8 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dos screen text font (height= 9 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dos screen text font (height= 10 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dos screen text font (height= 11 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dos screen text font (height= 12 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dos screen text font (height= 13 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dos screen text font (height= 14 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dos screen text font (height= 15 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dos screen text font (height= 16 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Linear music module (Farandole) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Blocked music module (Farandole) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code file (FORTRAN 77) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FORTRAN file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax document (Frecom FAX96) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Face graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Frequently Asked Questions document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music module (MOD) (Farandole Composer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Basic module file (3-D Fassade Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Navigation bar (Microsoft Outlook) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://searchNetworking.techtarget.com/sDefinition/0,,sid7_gci212098,00.html> From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Type image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Backup (Navison Financials) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spell Check dictionary file (Harvard Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Virtual CD-ROM file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Binary file patch (Forward Compression) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Declaration file (FORTRAN) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Field offsets for compiler (DataFlex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database (Navison Financials) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Forms Document (Adobe Acrobat) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document form (F3 Design and Mapping) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Button Bar for Figure Editor (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CADRE Finite Element Mesh From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Outline Font description (AGFA CompuGraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MS find fast file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax document (defFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
GUS PnP bank file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (PrintMaster Gold) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MS fast find file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MS fast find file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Final Form Text (part of IBM's DCA) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MS fast find file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Aldus Freehand 3 drawing (Vector graphic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Aldus Freehand 4 drawing (Vector graphic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
File Interface (FORTRAN) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fractal <http://WhatIs.techtarget.com/definition/0,,sid9_gci212149,00.html> Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
REND386/AVRIL file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
File List Object (dBase Application Generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
File template (Application Generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Overlay (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Print formatted text (Perfect Writer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
File index table (Microsoft Windows NT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphic (FITS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CCD camera image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Flexible Image Transport System file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Patch file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Movie (Macromedia Flash) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Format library (Papyrus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FLIC animation (AutoDesk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Field define module file (3-D Fassade Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
File folder (Charisma) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Delived form (Corel Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Driver (OS/2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
License (Navison Financials) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FLIC animation (AutoDesk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font library (EmTeX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Distributable dynamic link library (DLL) (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Film Roll (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FlowCharter file (MicroGrafx) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Filelist document (Farrukh Imposition Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Filter (Corel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Filter (Micrografx Picture Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics filter (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics filter support file (Asymetrix ToolBook) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music module (MOD) (StarTrekker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Open Flight file (MulitGen) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled binary file (DataFlex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FrameMaker Document (Adobe) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (FileMaker Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (Lotus 1-2-3, version 2.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Device driver (Harvard Graphics, version 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (Lotus 1-2-3, version 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Binary source code for form, (Oracle, v4.x and later) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
File Manager button bar (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font or Icon (IBM LinkWay) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MakeFile (FORTRAN PowerStation) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Mirror list (Oracle) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled format (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document file (FileMaker Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Csreen format file (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Print file (Microsoft Schedule+) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Style sheet (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text format for form file (Oracle, v4.x and later) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Executable form, (Oracle,v4.x and later) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font (Harvard Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Saved Search (Find applet) (Microsoft Explorer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font group (Font Navigator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Module (FunkTracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Inactive font (Exact) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font (Borland Turbo C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font (Borland Turbo C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fontographer font From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Saved message folder (1st Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Call log (Procomm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dialing directory (Telix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
System font (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Form (WindowBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FORTRAN source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font-related file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Installed TrueType font (Microsoft Windows Font Installer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file (FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FileMaker Pro file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
"Flying Pigs" screensaver datafile (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FileMaker Pro v.3 & 4 document file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document file (FileMaker Pro v.5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Catalog file (FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FileMaker Pro file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Memo fields (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Floorplan drawing (FloorPlan Plus for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap (FlashPix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Renamed dBaseIII+ form (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font (FontMonger) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Uncompiled report (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Zip (compressed ) file (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (FrameMaker or FrameBuilder) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Executable file (Oracle,v3.0 and earlier) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Form (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Form (Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Merge form (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Symbol Report (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled report (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Form (PerForm PRO Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Screen Font Resource (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Report menu (FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Form stash file (Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Report (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
fPrint Audit Tool From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Form (Paradox for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Paradox 7 form (Borderland) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Saved form (Corel Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sample file (Farandoyle) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Linkable program (dBFast) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data (Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Full text index (Lotus Notes) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Index file (Roots3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Client access data specification file (AS/400) (Client to Server) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Help system full-text search group file (Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font (MicroGrafx) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
File transfer protocol (Internet Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Help system full-text search index (Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document file (Family Tree Maker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database (Framework II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database (Framework II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database (Framework III) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database (Framework IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file backup for file splitting configuration (FileWrangler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file for file splitting configuration (FileWrangler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
On-Line guide (FastLynx) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Phonebook (FAXit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled source code (FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax Transmit graphic (WinFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bank dump file (Casio FZ-1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Full dump file (Casio FZ-1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Voice dump file (Casio FZ-1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data chart (APPLAUSE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
G3 fax format image file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raw CCITT G.721 //$bit ADPCM data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raw CCITT G.723 3 or 5bit ADPCM data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raw Graphics (one byte per pixel) Plane III (PicLab) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Album (Corel Multimedia Manager) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax document (GammaFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Emulator ROM image file (Nintendo GameBoy) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Color emulator ROM image file (Nintendo GameBoy) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Global definitions (VAXTPU Editor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lisp source code (Golden Common Lisp 1.1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lisp source code (Golden Common Lisp 1.1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Generic (TM) CADD drawing (later versions) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image processing file (Ground Control Point) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database file (InterBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dictionary file (GEOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bells, whistles, and sound boards module From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Genealogical data (GEDCOM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphic Environment Document (drawing) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics editor file (EnerGraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics editor native format (Arts & Letters) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Metafile (GEM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Vector graphics (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled template (dBase Application Generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Generated text (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Geode (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Unfinished-Download (GetRight) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed gif image (GIFBLAST) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Patton&Patton Flowcharting 4 flowchart From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics Link presentation (Genigraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font (NeoPaint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Genigraphics Graphics Link presentation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Chart (Graph-in-the-Box) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci212189,00.html> Windows 95 global index (containing help status) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<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
GIF image file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics Link presentation (Genigraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Presentation (Graph-in-the-Box for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics Link presentation (Genigraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ensoniq EPS family disk image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
GripKey document (Gravis) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Animation file (GRASP graphical System for Presentation) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Glim) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Across) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Glossary (Microsoft Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CGM Graphics (APPLAUSE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Tile map (Geomorph) (SPX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphical monitor record (Schlafhorst Automation) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics Link presentation (Genigraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Genealogy document file (Genopro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Generated executable code (Micro Focus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics Link presentation (Genigraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Goc sorce code (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Goc header (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Geode parameter file (Geoworks Glue) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graph (Lotus 1-2-3/G) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program package (Omnigo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graph paper application file (GraphPap) (Generates graph paper) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Screen driver (Microsoft Windows 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (SigmaPlot) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graph (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Shell Monitor (MS-DOS v5.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image processing grid (CHIPS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graph (Charisma Graph Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Grapher (Golden Software) graph From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pictures group (PixBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program Manager Group (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raw graphic (GREY) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Presentation (GraphShow) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Vector graphic (Professional Draw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio stream Raw 'byte aligned (GSM 6.10 audio stream) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio stream Raw GSM (6.10 audio stream) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
GSM w. header/QuickLink file (US Robotics voice modems) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
GSM w.o. header/VoiceGuide/RapidComm file (US Robotics voice modems) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sketch pad file (GeoMeter Sketch Pad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Zip file (Gnuzip) (Allows for output to html) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Worksheet (GraphShow) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music module (Graoumftracker) (new) (MOD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music module (Graoumftracker) (old) (MOD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data (PopMail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Greetings WorkShop file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics Link presentation (Genigraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics Link presentation (Genigraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics library (Genus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed file (Unix gzip) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
File compressed with the gzip compression program. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
C/C++ program header file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program header (C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
On-line Help (Flambeaux Help!) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Header file (C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Header file (Sphinx C--) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (HA) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Driver file (Novell Netware) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Vector graphics saved file (Amiga) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (HA) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Accounting data file (Humanic Software) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Handbook (MathCad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file (IBM HCM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sound Tools file (HCOM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Production configuration file (IBM HCD/HCM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Help file (Help development kit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
National Center for Supercomputing Applications (NCSA) Geospatial Hierarchical Data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Alternate download listing (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database header (Pc-File+) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Egret) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Message header text (1st Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Message header text (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Vector graphics (Harvard Draw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Help index (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Help index (Zortech C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (HighEdit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Hellbender saved game (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macintosh BinHex <http://WhatIs.techtarget.com/definition/0,,sid9_gci211663,00.html> 2.0 file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
HP font info (GEM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Drawing file (HP Graphics Language) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Header file (C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Help system map (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Precompiled header (Power C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Help information for remote users (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio file (HitPlayer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Help library (VAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Help file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Windows Help file (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Human machine interfaces MIDI music file (Descent) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Alternate mail read option menu (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Human machine interfaces MIDI music file (Descent) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program files (CNC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lucas Arts Dark Forces WAD <http://WhatIs.techtarget.com/definition/0,,sid9_gci213332,00.html> file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Main data package file (Descent3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Mission file (Descent 1-2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document file (HotSend) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ascii text Roman8 character set (NewWave Write) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font language file (Hewlett-Packard) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
HP LaserJet font (Adobe Pagemaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Partial download file (HotLine) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
HPGL Plotter vector graphics (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
HPGL Plotter vector graphics (Harvard Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font information (GEM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Help Project file (Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (HPACK) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Alternative menu for privileged users (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Emm text (HP NewWave) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Header file (Zortech C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program header (C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
BinHex (Macintosh 4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Rastor graphic (Hitachi) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Alternate menu for limited users (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Monochrome image (Postering) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FM synthesized music file (Used by many old games, e.g.:FINTRIS, ROL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphic (Handmade Software, Inc.) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
History file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
History file (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
HyperTerminal file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A HTML file that has been used to by viruses to update the system registry From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A Web page (a file containing Hypertext Markup Language - HTML - markup) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Hypertext Markup Language. A web page of some sort. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci212286,00.html> A Web page (a file containing Hypertext Markup Language - HTML - markup) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Hypertext template (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Template (Extended HTML) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Presentation (Hollywood) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Korean word processor document format (HanGul) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Alternate protocal selection menu (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
HAM extension (Descent2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Header file (C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Hyphenation algorythm (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Hyphenation algorythm (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Hyphenation dictionary (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
3D Image binary file (Hymarc Scandata Scanner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (HYPER) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Intermediate file (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
SWIG source, or C preprocessor output. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (Sterling Software) (Groundworks COOL Business Team Model) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap (IBM Image Acess eXecutive) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (ARCHDOS, IBM Internal only) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap graphic (Image Object Content Architecture) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Citrix file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Targa bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Catalog file (IronClad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer file (Kodak) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Drawing file (IronClad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Icon Library (Generic industry standard) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image Color Matching profile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Icon source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Icon (Microsoft Windows 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Scene file (IronClad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Disk identification file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Intermediate file (Microsoft Developer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MIDI <http://WhatIs.techtarget.com/definition/0,,sid9_gci212572,00.html> Instrument Definition From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project file (Borland C++ v4.5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MIDI Instrument Definition (Windows 95 required file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Identification file (Netscape saved address book) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data Query (Internet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Vector graphic (IntelliDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Index file (Microsoft Clip Gallery v. 1.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Index file (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Outlook Express file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Relational database index (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Relational database index (Symantec Q&A) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Form (JetForm Design) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image (Sun TAAC/SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Interchange file, (general purpose data storage format)) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Digital Video Disk (DVD) datafile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphic object layer data (ImageForge Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Script file (KnowledgeMan) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed fractal image (Yuvpak) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Create executable library (ImageForge/ImageForge Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
System file (OS/2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Initial Graphics Exchange Specification (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Metafile (Inset Systems) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Interchange file (QuickBooks for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music module From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Scream Tracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap (graphic image) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program outline (Microsoft ILink incremental linker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raster graphic (Sun Microsystems) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image (WinImage) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Vector graphic (EGO,Chart) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MIDI music file (Corridor 7, Blake Stone, Wolfenstein 3D, Spear of Destiny) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap graphic (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image (GEM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (Lotus Improv) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image presentation (ImageQ) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Create executable library data (IconForge) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
configure input file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Installation file (HP NewWave) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Input device driver (Harvard Graphics v3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Test script (Vermont High Test) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
internet email message (Microsoft Exchange Server v 5.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Include file (Assembler language or Active Server) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Index (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Shared Database file (Specifically in Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Software MultiModule screensaver From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Information file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Install script (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Type I LaserJet font information file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Info pages read with the info command. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bank setup file (Gravis UltraSound) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Initialization file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Setup file (MWave DSP synth's mwsynth.ini GM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pantone reference fills file (CorelDRAW) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Inline function file (Microsoft Visual C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code for form, (Oracle,version 3.0 and earlier) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
INRS-Telecommunications audio From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Install script (InstallShield) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Installation script (1st Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Instrument file (Ensoniq EPS Family) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Instrument music file (Adlib) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sample (Cell/II MAC/PC instruments) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sign-up file (X-Internet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Interfaced units (Borland) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Intermediate executable code (Produced when a source program is syntax-checked) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Index file (Foxbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (CPIO) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
3D graphics database (TDDD format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Organizational chart (Instant ORGcharting!) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Findit document (Microsoft Findit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
File description (4dos descript.ion) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pantone Spot reference pallette (CorelDRAW) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
International patching system binary patch file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Internet inquiry (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Resource file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spell checker dictionary (RapidFile) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (ISH) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<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 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ISO (International Standards Organization table, aka: ISO) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sign-up file(X-Internet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Instrument file (Digitaltracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Uninstall script (InstallShield) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music module (MOD) (Impulse Tracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Settings file (intalk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Interface file (JPI Pascal TopSpeed) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Instrument file (Impulse Tracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Internet document set (possibly a Microsoft file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sample file (Impulse Tracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Open Inventor file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microdata dimension or variable-level file (Beyond 20/20) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
User subset profile (Beyond 20/20) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Table or aggregate data (Beyond 20/20) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microdata directory (Beyond 20/20) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Presentation flowchart (IconAuthor-HSC Interactive) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Screensaver (Idlewild) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (IBM Writing Assistant) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Install Watch document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Start file (IconAuthor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (Wang) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Binary token file (IZT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ricoh camera file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Java ARchive (a compressed file for applets and related files) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphic (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code (Java) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (SigmaScan) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image browser file (Paint Shop Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project file (Project Scheduler 4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
JPEG <http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci212425,00.html> image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
JPEG <http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci212425,00.html> image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
JPEG <http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci212425,00.html> image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Discovery chart-to-statistics (SAS JMP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Jill of the Jungle data (Epic MegaGames) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Workbook file (Sigma Plot 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Vector graphics file created by conversion of a IMG file (QuestVision) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Journal (Microsoft SQL Server) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Journal backup (VAX Edt editor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphic (Japan PIC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
JPEG <http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci212425,00.html> image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci212425,00.html> From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
compressed bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
JPEG bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
JPEG image file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
JavaScript source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Jet Suite document (eFAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A HTML page containing a reference to a Java servlet From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap graphic (JPEG Tagged Interchange Format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax document (Hayes JT Fax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
JPEG bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Java ToolKit file (Sun Microsystems) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text document (JustWrite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Library (JustWrite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (Jazz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sample file (Kurzweil 2500) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MIDI file (text+MIDI) (Karaoke) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Keyboard script (Borland C++ 4.5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program source code (Knowledge Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Keyboard mapping script (Procomm Plus, LocoScript, Signature) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Keyboard mapping script (Reflection 4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lisp source code (Kyoto Common Lisp) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image (Kodak Photo-Enhancer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro (KEDIT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Forecast Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Icon toolbar (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Keyboard Macro From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Security file (Such as a software registration number) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image (KoFax Group 4) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Digital postcard (Kodak) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Contains all K-keywords in the RoboHELP Help project Index Designer not associated with topics From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
KeyMaP (Korg Trinity) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Toolpad (SmartPad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap graphic (IBM KIPS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Native Camera file (Konica) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sample (multi-floppy) file (Kurzweil 2000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sample file (Kurzweil 2000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sample File (Korg Trinity) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Keyboard mapping (FTP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Game data (Kye) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Linker directive file (WATCOM wlink) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code (Lex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code (Lisp) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (NCSS-SOLO) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Label file (Visual dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Mailing labels (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Loadable module (LAN DLL) (NetWare) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Clipart file (Printmaster Gold) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Word Chart layout (APPLAUSE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Label generator data (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Label (Clipper 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Label (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Label (dBFast) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap (DeluxePaint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Linear Bitmap graphics (XLib) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled label (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (LU) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Display driver (Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Labels (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Labels (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Linker control file (Norton Guides compiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Used in a program (unknown) that monitors a network's response time From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lockfile (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (FTP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lection document (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data History file (ACT!) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (Lucid 3-D) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Long distance area codes file (Telix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Overlay file (dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lock file (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Library definition file (Geoworks Glue) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Structured text file used for sharing information between E-Mail clients (Microsoft, Netscape and others) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Library (Corel Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Legacy document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
System game profiles (same as REG file) (Logitec Entertainment) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Level file (NetHack 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dictionary file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data resource file (LucasArts Dark Forces) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
LaserForms Plus file (Evergreen) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Laser printer font (ChiWriter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Loft file (3-D Studios) (DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Logo procedure definition (LSRHS Logo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Application log file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Application log file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Header and footer logo (SuperFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Logo file (PaintBrush) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Startup logo (Microsoft Windows 3.x-9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Alternate file suffix for LZH From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed Archive (LHA/LHARC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed Amiga archive (LHWARP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Library file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Logical Interchange data (Hewlett-Packard) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (LIMIT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Interactive music sequencing data file (Electronic Arts) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Line type file (DataCad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Listing (VAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Output file produced by a Structured Query Reporting (SQR) program From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Logos library system file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
LaserJet file. Suitable input to a HP LaserJet printer. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (Hewlett-Packard LaseJet II printer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database file (OpenSight-16 bit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Linked object (Microsoft Outlook Express Junkmail file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document file (LapLink III) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Exchange agent (Laplink) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Revelation) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Linker response file (RTLink) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Shortcut file (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Load file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Log file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Log file of a system service. This file grows with status messages of some system program. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed file (FileWrangler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A document reader used for downloading mortgage closing information (DesertDocs) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer driver (TEKO) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Helix Nuts and Bolts file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Information file for laser printers (common with some scanning sofware) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Video phone file (Intel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Linker response file (Microsoft C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Language resource file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Logos library system file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Saved library (Corel Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Script library (Lotus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
LINUX Software Map entry. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
AutoLISP, CommonLISP, and other LISP language files From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (Legato) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Keyboard macro (1st Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
List file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spool file (Oracle) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Form (Lotus Forms) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Library unit file (ThoughtWing) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Miner Descent/D2 Level extension (Parallax Software) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text document (LotusWorks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Wavelet graphics file (Luratech) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Layered Object file (Lightwave) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Object file (Lightwave) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Wordpro 96/97 file (Lotus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Scene file (Lightwave) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Linguistically enhanced sound file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Layer file (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
LyX word processor document. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Difference file for binaries (Ldiff 1.20) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (LH ARC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (LARC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (Skyroads) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed Amiga archive (LHWARP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro module (Brief) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program file (Matlab) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Standard package (Mathematica) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (MASS11) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MPEG-related file (MIME type 'mpeg') From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
source code file (Modula 3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
3D animation (Corel Motion) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MPEG URL (MIME audio file) (MP3 Playlist) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
M4 Preprocessor file (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image (MacPaint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Module (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Form (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A graphics format found in some Japanese files From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MAG graphics format created by Woody Lynn (MPS Magro Paint System) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file (Magic Mail Monitor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Mail (VAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Makefile (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project (Visual Basic or Microsoft C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Command module (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Man page. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Manual page output (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Color pallette (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Format data (Micrografx Picture Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Linker map file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Map file (Atlas MapMaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Map file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Map file used for color choices (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Network map (AccView) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WAD <http://WhatIs.techtarget.com/definition/0,,sid9_gci213332,00.html> game file (Duke Nukem 3D) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Query (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Assembly program (VAX Macro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Report (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (Lotus Freelance Smartmaster) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Binary file (Matlab) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Table (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sample format (Maud) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
3D scene (Kinetix 3D Studio Max) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (Paperport) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Layout file (OrCad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code (MAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A format use by Division's dVS/dVISE From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Maze data file (Hover) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Memo field values for database (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (Apogee Monster Bash) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Multiple index archive (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Mailbox file (Berkeley Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Extension Microsoft Outlook adds to saved email, Eudora mailboxes From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Calling card (Dialer10) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file (MathCad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (MathCad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font file (MathCad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Magic control file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Command script (Media Control Interface) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Application script (Capsule) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer driver (MathCad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project file (Metrowerks CodeWarrior) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Keyboard macro file (DataCad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (Microsoft Word for Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text document (MacWrite II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (MDCD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Add-in file (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Workgroup (Microsoft Access version 2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MDE file (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Model (3D Design Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Model file (Quake) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Model file element (Rational Rose) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music module (MOD) (Digital Trakker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (CA-Compete!) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Modem definition (Telix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Blank database template (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Add-in file (Data) (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data table (Microsoft ILink incremental linker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Workgroup (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Multiple index file (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Wizard template (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ASCII text document (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro editor bottom overflow library (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro editor delete save file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music module (MOD) (OctaMed Music Editor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro editor macro (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Memory variable save file (Clipper) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Memory variable save file (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Memory variable save file (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro editor print queue file (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Format for interchanging spreadsheet/database data; recognized by Filemaker, Excel, and others From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro editor resident area (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro editor workspace file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Message file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document file (OmniPage Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro editor top overflow file (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Presentation Manager metafile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Menu group (DOS Shell) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Executable command (Matlab) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro editor expound file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Meta-Font font program source file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Metafont text file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Manufacturing file (Pro/ENGINEER) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A file in a Materials and Geometry Format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font file (MicroGrafx) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MHTML document (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MHTML document (MIME) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MHTML document (MIME) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (Cocreate ME10) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Miscellaneous file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image Composer file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MIDI <http://WhatIs.techtarget.com/definition/0,,sid9_gci212572,00.html> music From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Interchange format (Adobe FramMaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Machine Independent File (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (MicroStat-II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<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. From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci212576,00.html> From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Object file (Power C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Package file (Command & Conquer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Picture file (Microsoft PhotoDraw 2000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Picture file (Microsoft Picture-It!) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Resource archive (Westwood Studios) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio file similar to MP3 (Mjuice) (Opens with WinAmp) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Makefile (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Makefile (Microsoft Windows SDK) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphic Image (MagView 5.0) (Japanese) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (TACT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project file (Milestones 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro library (Symphony) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A file in 3D Studio's Material-Library format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Muliple link interface driver file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Groupwise email file (Novell Groupwise) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (MultiMate Advantage II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Catalog file (Microsoft Clip Gallery 5.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<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. From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Mail file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Mail message file (Microsoft Mail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Meal Master Format, a recipe catologing format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Beyond 20/20 table or aggregate data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bulk mail file (Created by MyMailList) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Multimedia movie (MacroMind Director 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Multimedia movie (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Memo Writer file (RapidFile) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MindManager file (MindMapor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Output video (Bravado) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Mission file (Descent2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Mission file (Descent3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Menu source (AutoCAD Menu Compiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MNI Mandelbrot for Windows From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Map (DeLorme Map'n'Go) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Multi-image Network Graphics From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Menu file (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Advanced macro (HP NewWave) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Interact menu (Intertal Systems) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Menu (AutoCAD Menu Compiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Menu (Norton Commander) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Menu file (Visual dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled menu (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Menu (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Account book (Microsoft Money) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Device definition (PEN for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Amiga/PC tracker module From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FastTracker, StarTrekker, Noise Tracker (etc.) music module file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Kernel module (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Modula-2 source code file (Clarion Modula-2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (Microsoft Multiplan) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Monitor description (ReadMail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Movie (AutoCAD/AutoFlix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Movie (QuickTime for Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Zipped (Compressed) mod file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MPEG Audio Layer 2 file (MIME video file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MPEG Audio Layer 2 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MPEG Audio Layer 3 (AC3) file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MPEG Audio Layer 3 (AC3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MPEG-related file (MIME type 'mpeg') From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Calendar file (Microsoft Project) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database file (Microsoft Project) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MPEG animation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://WhatIs.techtarget.com/definition/0,,sid9_gci212601,00.html> From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
animation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MPEG animation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Mathplan Macro library (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Drawing file (CAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project file (Microsoft Project) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Menus (compiled) (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap graphics (Multipage TIFF) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
View file (Microsoft Project) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled menu program (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Exchange file (Microsoft Project) used for exporting data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Multiple resolution bitmap graphics (Microsoft C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MRI Scan From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro resource file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Archive (Magic Shadow) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Common console document (Microsoft Windows 2000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Makefile (Microsoft C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Diagnostics report file (Microsoft MSD) (Diagnostics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Scene Description Language (Manchester) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Mail message (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Installer package (Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Mission File (Descent) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Network document (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Paint bitmap (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Windows Installer patch file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Manuscript text file (Jove) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Manuscript text file (MINCE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Manuscript text file (Perfect Writer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Manuscript text file (Scribble) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Minispecification file (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Setup script (Microsoft SDK) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Windows Installer transform From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (Microsoft Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed CP/M archive (MSX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Math file (Derive) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music module (MOD) (Multitracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Minitab) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Twain device driver (32 bit)(UMax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Menu (Quattro Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Online game called Ultima online From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Interactive music audio data file (Electronic Arts) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music (MusicTime) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio (Mus10) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Server-side script file (Miva) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Video accelerator file (Matrox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Multimedia Viewer file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (Sony Digital Mavica) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Interplay video file (Descent2, Fallout2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Stop frame file (AutoCAD-AutoFlix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Movie command file (AutoCAD-AutoFlix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Log file (Saber LAN) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Animation (ProMotion) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Smartmaster file (Lotus WordPro 97) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Map file (ArcInfo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Microsoft C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Presentation file (Make Your Point) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Hard Drive Boot sector backup (MazeGold) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Nanoscope files (Raw Grayscale) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Metafile (NAP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Video file (EnerGraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (Nota Bene) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Instructions for numerical control machine (CAMS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Developer Studio file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CNC (Computer Numeric Control) file (CamView 3D) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Change directory (Norton) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Command File (Netware) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Internal clipboard (Lotus Notes) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Network database (Intellicom) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
3D low-polygon modeler (Nendo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database file (1ACT! for Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Index file (Cindex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Index file (dBase II-III-IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raster graphics (Atari Neochrome) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Emulator ROMS for game console (Nintendo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Netlist output file (Orcad Schematic Capture) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Network configuration file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Network Common Data Form From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
New info From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Emulator file used for game consoles (NES) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Neutral File Format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Info file database text From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Infobase file (Folio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Template file (Netobject Fusion) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Online documentation database (Norton Guide) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Icon Library file (EasyIcons-compatible) (Norton) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio (NIST Sphere) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data (Oracle 7) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Loadable Module (Netware) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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>) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
E-Mail Trigger file (Norton LiveUpdate) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Form (FormWorx 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
File (Netobject Fusion) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project schedule (Nokia Planner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project schedule (Visual Planner 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source for interpreter (dBase Application Generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (NICOLET) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (Nero) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database (Lotus Notes version 2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database (Lotus Notes version 3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database (Lotus Notes version 4) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database (Lotus Notes) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document file (NetObject Fusion) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music module (MOD) (Noise Tracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Startup files (Microsoft Windows NT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database template (Lotus Notes) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Executable ASCII text file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Executable ASCII text file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Tutorial (Norton) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Index file (CA-Clipper) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Message for new users (1st call) (Procomm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Song file (Noteworthy Composer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
News message (MIME RFC822) (Microsoft Outlook Express) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sound file (NeXT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Object file (Atari) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Object file (GCC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Object file (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Outfile (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Word processor document (Fujitsu OAS)(Japanese) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax (NetFax Manager) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Object cut/paste file (IBM LinkWay) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Binder (Microsoft Office) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Binder template (Microsoft Office) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Object file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Object browser data file (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Script (ObjectScript) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual interface (ObjectScript) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Binder Wizard (Microsoft Office) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Object craft file (Object Craft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Transcribed fax-to-text file (FAXGrabber) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Type library source (Visual C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Mailbox file (Microsoft Outlook Express) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Form definition (ObjectView) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Object File (3D Mesh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FileNew file (Microsoft Office) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Template (Microsoft Outlook) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Feldeinteilung module file (3-D Fassade Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music module (MOD) (Oktalyzer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Object Library (OLE) (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Object library (VAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Backup file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci214126,00.html> Object Linking and Embedding (OLE) custom control (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci214126,00.html> OLE object From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (Olivetti) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Voice file (Typhoon) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Object Oriented Graphics Library From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Swap file (Shroom) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project file (Orcad Schematic Capture) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Organiser Programming Language source file (Psion/Symbian) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Active options (Exact) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Output executable file (OPL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Developer Studio file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Optimize support file (QEMM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Organization chart (Org Plus for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Extension DLL (OPL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Inactive options (Exact) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Calendar file (Lotus Organizer 2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Lotus Organizer 97 file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file (Oracle 7) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Parameter file (Oracle) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Script (Oracle 7) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Calendar file (Lotus Organizer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Search file (Microsoft Office) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Offline file (Microsoft Exchange/Outlook) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Outline font description (Z-Soft Type Foundry) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Template file (PrintMaster Gold) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Template file (Super NoteTab) (Fookes) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (Olivetti Olitext Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Output file (Microsoft C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database file (Revelation-DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Overlay file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Overlay file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (ObjectVision) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Overlay file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Overlay file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Application parameter file (ReaGeniX code generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Picture file (APPLAUSE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code (Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Plot 10 drawing (Tektronics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
16 Channel Music file (ProTracker 16) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Patch file (Patch 22) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project Planner file (Primavera) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document file (PageMaker 6.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Digital ID file (MIME) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Worktable (PageAhead) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Personal Address Book (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image (Stad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Package file (Sound Blaster Studio II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Keypad definition (Telemate) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (PAK) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WAD <http://WhatIs.techtarget.com/definition/0,,sid9_gci213332,00.html> file (Quake) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A compressed file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Color palette (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer specific file (CorelDRAW) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Password encrypted zip file (Hewlett-Packard) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Parameter file (Fractint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Parts application (Digitalk PARTS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Permanent output file (Microsoft Windows 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code file (Borland Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
exePatch utility used for Warcraft2 (WarHack) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Hatch pattern file (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Patch file (Advanced Gravis Ultrasound/Forte Technologies) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pattern file (CorelDRAW) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
colors From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax (FAXability Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Phone book (WinFax Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Setup file (PixBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (First Publisher for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code file (Powerbasic BASIC) (Genus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Phone book (FaxNOW!-Faxit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Turtle Beach Pinnacle Bank File From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Include file (PowerBasic) (Genus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Profiler binary input file (Microsoft Source Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Phonebook From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Library file used in a development environment (PowerBuilder) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PowerBasic library (Genus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PBM image file format. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Planar bitmap graphic (XLib) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Portable bitmap graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Profiler binary output (Microsoft Source Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Resource file (PowerBuilder) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Profiler binary table (Microsoft Source Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (IBM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Custom palette (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ascii text IBM8 character set (NewWave Write) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Application data file (Microsoft Powerpoint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Cutout picture vector graphics (PC Paintbrush) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image (Kodak Photo-CD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
P-Code compiled test scripts as in Microsoft Test and Microsoft Visual Test From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Maps Eudora mailbox names to DOS filenames From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PCF image file--intermediate representation for fonts. X Window System font. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Profiler command file (Microsoft Source Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Patch file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Precompiled header file (Microsoft C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PCI Miniport file (Microsoft Windows System file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Multimedia authoring tool graphics (IBM Linkaway-Live) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pickfile (Turbo Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://WhatIs.techtarget.com/definition/0,,sid9_gci214283,00.html> From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PCM file (OKI MSM6376 Sythesizer Chip) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Live Update Pro file (Symantec) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Animation (PICS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Picture storage file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PICT drawing (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (PC Write) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PC Paintbrush bitmap (ZSoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PCX image file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap graphics From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (TACT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database file (3Com PalmPilot) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Physical model backup file (PowerDesigner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphic image that can be opened with Paint Shop Pro and Adobe PhotoDeluxe From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://searchMobileComputing.techtarget.com/sDefinition/0,,sid40_gci214288,00.html> Portable Document file (Adobe Acrobat) (displayable with a Web browser) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Definition File From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Formatted document similar to PostScript or dvi. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (ED-SCAN 24bit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer Definition File (Netware) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project description language file (Borland C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Physical model file (PowerDesigner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Print Shop Deluxe file (Broderbund) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Flowcharting PDQ Lite file (Patton&Patton) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Hardware assembly source code file (Pldasm) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Photographic image file (origin not yet identified) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database file (ProCite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer driver (Paintbrush) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (Professional Draw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database index file (ProCite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image archive file (QuickViewer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image archive file (Ulead PhotoImpact) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image archive file (Ulead PhotoImpact v.4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program Editor bottom overflow file (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program Editor delete save file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program Editor macro (WordPerfect for Windows library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program Editor print queue file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program Editor resident area file (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program Editor work space file (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program Editor top overflow file (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Encrypted file (Alladin Systems) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Type 3 font (ASCII) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Type 1 font (binary) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
X Window System font file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Personal filing cabinet file (AOL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PF Component file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (First Choice) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Paraform file for 3D modeling (Scandata) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Programmable function keys (XTreePro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer Font Metrics (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database text file (PFS:Write) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer font (ChiWriter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Page cut/paste file (IBM LinkWay) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer graphics file device driver (PGRAPH Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Plotter drawing (Hewlett-Packard) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Portable Graymap (bitmap) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program file (Signature) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Portable game notation file (ChessMaster and others) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PGP encrypted file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Manual page (man4dos) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Optimized .goh file (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Perl header file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Phrase-table (Microsoft C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Temporary file generated by Microsoft Help Compiler From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Phone list (QmodemPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Phone list (UltraFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Phone database (Metz Phone for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<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 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PHP program source code (used for web page design). From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
HTML page that includes a PHP <http://searchEnterpriseLinux.techtarget.com/sDefinition/0,,sid39_gci334246,00.html> script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Phrases (LocoScript) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
HTML page that includes a PHP <http://searchEnterpriseLinux.techtarget.com/sDefinition/0,,sid39_gci334246,00.html> script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
perl <http://searchEnterpriseLinux.techtarget.com/sDefinition/0,,sid39_gci214291,00.html>-parsed HTML From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Low resolution picture file (Dages Elite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Medium resolution picture file (Dages Elite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
High resolution picture file (Dages Elite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
3D Image file (SoftImage) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap (PC Paint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PICT drawing (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Picture file (Lotus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pixar picture file (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PICT image file (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PIF drawing (IBM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program Information File From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Vector graphics GDF file (IBM Mainframe) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WAD file (Lucas Arts Dark Forces <http://WhatIs.techtarget.com/definition/0,,sid9_gci213332,00.html>) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (Epic Pinball) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (Epic Pinball) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Alias image file (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap (Inset Systems) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project file (CA-SuperProject) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source Integrity file (MKS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual FoxPro memo file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual Foxpro Project (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual FoxPro project file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Packed bitmap font file (TeX DVI) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed file archive (PKARC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Developer Studio application extension (similar to a DLL file) (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Installer script (NEXT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Public Keyring (PGP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Packet file (Fidonet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Interleaf printerleaf (or WorldView) format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Palette (Harvard Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Perl or Prolog program source code. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Property list font metric file (TeX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code file (Perl) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code file (Prolog) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Room plan (3D Home Architect) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Chart palette (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Library file (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Add-in file (Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A format use by REND386/AVRIL From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data description file (Oracle 7) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pre-linked library file (Clipper 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Module (DisorderTracker2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pilot file (Descent 1-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MPEG PLayList file (used by WinAmp) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sample file (DisorderTracker2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Drawing (HPGL Plotter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Palette (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Plot drawing (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pre-linked transfer file (Clipper 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sign-making software (Gerber Optical) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (PopMail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Presentation screen (Harvard Spotlight) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap graphics (Presentation Manager) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Module (Perl) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (PageMaker 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (PageMaker 4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (PageMaker 5.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (PageMaker 6.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics (A4TECH Scanner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program file (Amaris BTX/2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer device driver (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci214307,00.html> Bitmap (Portable Network Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap file (MacroMedia FireWorks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Browser catalogue (Paint Shop Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Portable aNY Map graphics (PBM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphic file (MacPaint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pen Table plotting file (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
QWK reader pointer file (MarkMail 2.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Same as PNT file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PIG file extension (Descent2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Optimized .goh file (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
3D polygonal modeling file (Innovmetric) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Windows NT <http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci213368,00.html> Policy file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Message index (PopMail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Popup file (Visual dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PowerPoint template (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Persistence of Vision file (Ray-Tracer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Chord chart (PowerChords) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed Amiga archive (POWERPACKER) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap (Picture Publisher 4) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PowerPoint Add-in (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Button bar for print preview (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PostScript Printer definition file specification (Adobe Acrobat v.4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pinnacle Program File (Turtle Beach) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (Microsoft PowerPoint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PolaroidPalettePlus ColorKey device driver (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Portable Pixelmap bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pre-processed output file (Clipper 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Desktop publishing default output file (Serif PagePlus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document or finished project (Parson Power Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PowerPoint slide show (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Storyboard (Personal Producer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PowerPoint presentation (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Master boot backup file (PowerQuest BootMagic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Drive image file (PowerQuest) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Presentation (Aldus Persuasion 2.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer driver (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Postscript printer driver (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Presentation (Aldus Persuasion 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Resource (text or program) file (3com PalmPilot) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer driver (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Presentation (Lotus Freelance) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Settings (Microsoft C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Settings (Programmer's WorkBench) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Output file (Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pixel Run Format graphics (Improces-Fastgraph) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer driver (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Settings file (Macromedia Director) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
System file (Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program file (WAVmaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program source files (Atari) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program source files (dBase IV, Clipper 5, and Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer definitions (LocoScript) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Control Language file (printer-ready bitmap) (Hewlett-Packard) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project file (3D Studio) (DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Parameter file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Print Table (space delimited text) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer driver (Signature) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (Lotus 1-2-3-Symphony) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Windows Printer file (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics profile file (DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project file (Terramodel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code file (Prolog) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data conversion saved project file (Oberon Prospero) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Presentation file (Harvard Graphics for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer resource font file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Procedure file (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A print-formatted file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Part file (CADkey) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Part file (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer driver (Dr. Halo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Internet provider template file (psiMail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled program (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (Lotus Freelance 97) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Postscript <http://WhatIs.techtarget.com/definition/0,,sid9_gci212814,00.html>-formatted file (a Postscript printer-ready file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PostScript file, for printing or viewing. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sound Bank file (Pinnacle) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap (Adobe Photoshop) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap graphics (IBM printer Page SEgment) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Outline PostScript printer font (ChiWriter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A-law audio file (psion) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sound data file (Epic Pinball) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Studio module (ProTracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Symbol table of IDE (Turbo Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (PaintShop Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Procedure (Prodea Synergy) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Report file (PowerSoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Personal Folder File (Microsoft Outlook) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Device driver (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Template (PageMaker 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Template (PageMaker 4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Script file (PubTech BatchWorks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Table file (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Table file (Pro/ENGINEER) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Petal file (ASCII version of Microsoft Visual Modeler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro (PubTech BatchWorks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music module (MOD) (Polytracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
QWK reader pointer file (QMail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (Microsoft Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Public key ring file (PGP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Publication (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Map file (WarCraftII) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (PUT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Script file (Instalit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Library file (Instalit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Local pointlist (Fidonet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (Professional Write) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Word document (Microsoft Pocket) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Password list file (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (a roll of film viewed using Photoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text document (Professional WritePlus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PowerPoint wizard (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Primary database index (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pocket Excel spreadsheet (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
python <http://searchEnterpriseLinux.techtarget.com/sDefinition/0,,sid39_gci213538,00.html> Script file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Python program source code. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Saved emessages (YAHOO) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
Default settings (Pizazz Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Overlay file (Pizazz Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Palette (Pizazz Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Settings (Pizazz Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Transfer file (Pizazz Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Swap file (Pizazz Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (PF QuickArt) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Quick Access Group data file (Norton Desktop) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Application file (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Saved query (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Saved Query (Quattro Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled query (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program file (Microsoft QuickBasic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet data (QuickBooks for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Voice file (Qualcomm Pure Voice) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file-segment 10 (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file segment 1 (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file segment 2 (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file segment 3 (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
QuickDraw 3D Metafile (Apple) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file segment 4 (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file segment 5 (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file segment 6 (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file segmnet 7 (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file segment 8 (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file segment 9 (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (Quicken) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Backup of startup files (QEMM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file from the Quicken UK Accountancy/Tax/Invoice program (QuickBooks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (Steve Blackstock Giffer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Query file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Electronic library file (Quicken) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (FAMILY LAWYER) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax (QuickLink) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Backup file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image (MIME)(QuickTime) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Import file (Quicken) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Library file (Microsoft C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Library file (Quick) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data (PostScript help file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer driver (QuickLink) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Motion file (Quality) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Option or services file (QMail 4.x Mail Door) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Generated query program (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Print queue device driver (OS/2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled query program (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Qardware definition file (Quick Qard Technology) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Report builder file (Centura) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Report file (Liberty for Windows 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Equation Editor support file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
QRT graphics file (Ray Tracer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Query (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Query (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Quicken) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Tab file (Quake Spy) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Movie file (QuickTime) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (QuickTime) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (QuickTime) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Movie file (QuickTime) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Preferences file (QuickTime) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (QuickTime) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PICT image file (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (QuickTime) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Write program file (Symantec Q&A) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Message file (QWK Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (Quark Xpress) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Element library (Quark Xpress) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Template file (Quark Xpress) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ratfor file (FORTRAN Preprocessor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Resource file (Pegasus Mail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raw graphics (One byte per pixel) plane one (PicLab) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pcl 4 bitmap font (Intellifont) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sound file (RealAudio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Radar data file (Radar ViewPoint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Metafile (RealAudio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ReadAllOver (YOUniverse) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
RAR compressed archive (Eugene Roshall's format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap (Sun Raster Images) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (RATS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raw File Format (bitmap) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raw signed PCM data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raw signed PCM data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Rbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Maintained by RoboHELP, the RBH file adds to the information contained in the Help project file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file (emacs) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Resource script (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Resource script (Micosoft C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Newsgroup file (Netscape) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Registered level file (Descent1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled UIC source code (Geoworks UI Compiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Research document information format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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>) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Device-independent bitmap file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Registered Level file (Descent) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Reflex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (EpiInfo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Record file (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Recorded macro (Microsoft Windows 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Voice file (RapidComm) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Path information file (Clarion Modula-2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Reference file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
OLE registration file (Microsoft Windows 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Registration file (Corel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Registration file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
data files for multiple users of a small-scale PC application From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Remarks file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Reply file (QWK Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Report file (CodeReporter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Report file (DataBoss) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Report file (Report Designer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Report file (Visual dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Request file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled resource file (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Resource file (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Resource file (Microsoft Visual C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Revision file (GeoWorks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Report definition (Oracle) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code file (REXX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Resource file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raster graphics file (Sun) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Revisable Form Text (part of IBM's DCA or Document Content Architecture) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
RGB files (Silicon Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Symbol tables (ReaGeniX code generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Resource header file (Borland C++ 4.5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics in Renderman format (3DReality) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax document (Ricoh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (Metacreations Painter 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
RIFF bitmap graphics (Fractal Design Painter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics (remote access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap graphics (ColorRIX VGA Paint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Regestered level file (Descent1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Registered level file (Descent2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap graphics file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap graphics file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Wavefront raster image (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (Harvard Graphics Win 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (1 bit per pixel scanner output file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Run-Length Encoded bitmap (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Realizer source code file (CA-Realizer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Video file (RealAudio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (Microsoft RegMaid) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Rich Map Format (used by 3-D game editors to store a map) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Rich music format (Beatnik) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MIDI music From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Makefile (Clipper RMake) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Xpl Program file (Nota Bene) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Rendering slide (AutoCAD-AutoShade) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Runoff file (VAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FM music Adlib Music file (Roland) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
Data file (Rescue Rover) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database (RapidFire) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text document (Replica) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Video file (Tomb Raider) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Package Manager (RedHat Linux) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
RedHat Package Manager rpm file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Crystal Reports file ( and a sub-set of Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Saved game file (Ace Road Rash) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Amiga Resource Reassembler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Red Storm bitmap (Rainbow 6 (Game) and several image editing programs) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Resource file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Paradox 7 reports (Broderland) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Resume file (WinWay Resume Writer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Response file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Resourse fork file (Macintosh Mac-ette) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://searchExchange.techtarget.com/sDefinition/0,,sid43_gci214276,00.html> Rich Text Format document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Help file script (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Used by RoboHELP to simulate the search feature of Windows help From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Run Time library (NU 7.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music module (MOD) (Real Tracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Software update package data file (RTpatch) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
RoboHELP to speed complex operations From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
RTSL document (RealAudio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Runtime library file (CA-Realizer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Extension used in InstallShield From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled output p-code file (Softworks basic compiler) (SoftworksLtd) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Scan Configuration file (MIME) (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Review file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Resource Workshop data file (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Script file (RenderWare) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
RAR compressed files from a multi-volume archive (xx = a number from 01 to 99) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Assembler source code (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code file (Scheme) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Temporary sort file (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Instrument file (Scream Tracker v 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
16 channel music file (Scream Tracker v 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Encrypted video file (Integrated Sensors) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (SORITEC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (AMI Professional) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Signed 8bit sample data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (SAR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Backup file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Saved game file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raw Signed Byte (8bit) audio data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Locking file (Superbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data definition file (Superbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Storyboard data file (Storyboard Editor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
File data (Superbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Instrument file (Creative Labs SoundBlaster) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bank file (Soundblaster)/EMU SoundFont v1.x (Creative Labs Soundfont 1.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Flash object (ShockWave) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dml program file (Superbase 4) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program file (Superbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Query definition file (Superbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Support file (Source Browser) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Notes related to record data (Superbase 4 for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Form definition file (Superbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Display driver (Framework II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pal script (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
SAS catalog (Windows 95/NT, OS/2, Mac) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Schedule+ 7.0 file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Renamed dBase III screen mask file (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Saved game file (SIMM City 3000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Screen device driver (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Level file (Roller Coaster Tycoon) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (SCA) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source Safe file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Microsoft Schedule+ 7.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Object description language graphics (Scodl Scan Conversion) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Slide image (Matrix/Imapro SCODL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Command file (Microsoft Windows Explorer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Multimedia show (ScoreMaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spell checker configuration file (Symphony) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Microsoft Schedule+ 7.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Schematics file (ORCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax document (SciFAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Inspire native format (ScanVec) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
System configuration information file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Scheme source code file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Video game console ROM emulater file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Scene data file (TrueSpace2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Screen file (Kermit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
High score file (Generic game file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dial-Up Networking Script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Script file (BITCOM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Debug source code (DOS Debug) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax image (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Screen font file (LocoScript) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Screen snapshot file (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Screen snapshot file (Procomm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Screensaver file (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CT bitmap (Scitex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FoxPro forms (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
SAS catalog (Dos) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
SAS catalog (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
CASmate Native format (ScanVec) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap graphics (ColorRIX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Chart (Stanford Chart) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
FoxPro forms (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Screen file (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Security file (ReaGeniX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio (Sound Designer I) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Flattened file/data fork (Sound Designer II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
SAS database (Windows 95/NT OS/2, Mac) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
File archive description (Fidonet Software Distribution Network) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (Staroffice)(StarCalc) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Presentation file (Staroffice)(Starimpress) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
System Data File Format - legacy Unisys (Sperry) format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Software distribution network information file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Floppy disk image (Roland) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Library file (SmartDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Software distribution network compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Cocreate SolidDesigner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Cocreate SolidDesigner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Drawing (SmartDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raw Midi Sample Dump Standard file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Template (SmartDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Semicolon Divided Values file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphic file (Lotus WordPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raw Signed DWord (32bit) data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Midi Sample Dump Standard files compacted by SDX From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Self-expanding archive (used by Stuffit for Mac files and possibly by others) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secret key ring file (PGP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secured animation file (Disney Animation Studio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Screen editor script files (SED) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (Copy Books) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer seperator page (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Tagged Image File Format (TIFF) bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Animation file (Atari) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sequential instruction file (Bubble Chamber) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Session file (Cool Edit) (common digital audio editor file ) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Session information file (Clarion Modula-2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Internet Security Scanner file (ISS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file (1st Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Install driver sets (Symphony) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Setup option file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Voice set files (Quartet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sewing program file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
SoundFile format (IrCam) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Wps attribute storage file (OS/2 WorkPlace Shell) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bank file (Creative Labs Soundfont 2.0)(Soundblaster) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
SoundFont file (EMU version 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sound File Data (SoundStage) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (SIS Framegrabber) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer font file (Hewlett-Packard Laser Jet Landscape) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer font file (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sound File Info (SoundStage) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sound file (Sonic Foundry) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pcl 4 bitmap font (Intellifont) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pcl 4 bitmap font (LandScape) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pcl 4 bitmap font (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font file (SPX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pcl bitmap font (Intellifont) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pcl bitmap font (Portrait) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pcl bitmap font (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sample Resource (Sonic Foundry) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pcl 5 scalable font file (Intellifont) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Screen font (ChiWriter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Mangled JPEG (Seattle Filmworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Self-extracting archive (RAR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (SnapGraphix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (Stanford Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document w/graphics (StarWriter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (Sonique) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (IRIS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (Silicon Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Standard Generalized Markup Language From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Standard Generalized Markup Language. Used to create documents to be converted to many different formats. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Statistics file (STATGRAPHICS Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Save/Get keyboard macro (Signature) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ASCii archive (Unix/SHAR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
Shell script (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Presentaion file (Harvard Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document shortcut file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Presentation (Corel Show) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap (HotSpot) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed Apple archive (SHRINKIT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (Arthurian Shrink Archiver) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Shell macro (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio compression file (Shorten) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
DOS shapes file (3D Studios) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
File format used by some programs for 3D modeling of multipart interactive triangle models From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Shapefile spatial data format (used by many GIS programs) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code and shape file for text fonts (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
File archive (Unix ASCii) (SHAR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Shell scrap file; reportedly used to send "password stealers" From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
HTML file containing Server Side Includes (SSI) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Presentation (Corel Show) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Presentation (Harvard Graphics 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Slide Show (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Shape entities (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Shapefile spatial index file (ArcView) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Setup installation files (Microsoft Windows NT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Current program settings (Signature) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Signature file (PopMail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Backup files (Microsoft Word for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Backup files (Sicherungskopie) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive of Mac files (Stuffit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file (Oracle 7) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secret Keyring file (PGP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Drawing file (AutoSketch) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Resource file (Macromedia Director) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Save Layout extension (PACT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code file (S-Lang) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Slide Library File (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled SALT script (Telix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Slide File (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Slide file (MAGICorp Slide Service) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Symbolic link spreadsheet (SLYK) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sound data file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Script application language (SALT) (Telix script source) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Maillist (SoftSpoken Mailer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Script file (ScriptMaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code file (Smalltalk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (Samna Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Symbol file (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Video game console ROM emulator file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax document (SMARTFAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (Deer's Revenge) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (Nascar Racing '99) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (Smack Player) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro (AMI Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sample file (AdLib Gold) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Samplevision format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Emulator ROM image file (8-bit Sega Master System) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
SmartObject file (IconAuthor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (Smart Ware II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raw unsigned PCM data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sample (AKAI MPC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sound file (NeXt) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sound resource (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sound file (Sounder) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sound file (SndTool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Midi song file (Midisoft Studio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Midi song file (Prism) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Mailbox (mail folder) index (Netscape) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code file (Snobol4) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Output video file (Computer Eyes) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Shared library file (Unix)(equivalent to a Windows DLL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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.] From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Solution file (Common used with game examples,tutorials) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Network serial numbers (Quattro Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sort information files (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Song file (Creative Labs SoundBlaster Studio II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sound file (Creative Labs SoundBlaster Studio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive for Unix (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Saved game (Roller Coaster Tycoon) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program file (Microsoft MultiPlan) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Temporary file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (Speech) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Scalable font (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Scalable font (Speedo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Speedo X Window System font file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Slide presentation file (EnerGraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Glossary file (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (Phillips Scanner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (Siemens Scanner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (SPLINT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Customized printer driver (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Object file (ShockWave Flash) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Personal spell dictionary (Signature) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer spool file (Microsoft Windows 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sample file (DigiTracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sample file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer file (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sound sample (SP Pack) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document letter (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Generated screen program (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sprite (Image layering and resizing) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap file (Acorn) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Screen driver (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spssx source code file (VAX/VMS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code file (Spitbol) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Support file (MITAC disk/system management utility package) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Picture file (Spectrum 512) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Worksheet (SigmaPlot) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled screen program (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Structured Query Language (SQL) common code file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Generally used by database products as an extension for SQL queries (scripts, text, or binary) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
SQL queries (Informix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Query result of audio search (Sonique) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Structured Query Language (SQL) program file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (SQUEEZE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source RPM file. A 'tarball' that can be recompiled and installed which also allows RPM based systems to manage them. From Binh http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Undefined file (Motorola) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raster graphics file (Sun) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Video game console ROM emulator file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
SCript file (QuickLink) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source file (DataFlex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap graphics (Splash) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Video file (Sub Station Alpha) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (SAS/PC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
SAS database (Dos) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
SAS data sets (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet file (Enable) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (SAS Transport) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Disk Image file (Atari) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Instrument library (Scream Tracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code file (Little SmallTalk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Stamp file (NeoPaint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Saved state (Reflection 4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Stack file (SpinMaker Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Stub library (Genus GX Kernel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Standard script file (LocoScript) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
State transition diagram graphic file (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (SHRINKTOFIT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Stereolithography file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music file (Scream Tracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music module (MOD) (Scream Tracker 2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Shorter suffix for .shtml, an HTML file containing a server side include (SSI <http://WhatIs.techtarget.com/definition/0,,sid9_gci214225,00.html>) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
State transition diagram model file (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Pascal stub OBJ file (Genus GX Kernel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (Statistica) (StatSoft Software) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Screensaver file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Structure list OBJ file (dBase IV Application Generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project status information file (Microsoft C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Song file (Music) (Scream Tracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (SmartTerm for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Electronic book file (SmarText) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Tax form (CA-Simply Tax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Style sheet (Generic text and graphics programs0 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Style sheet (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Suit library (Simple User Interface Toolkit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Summary file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Rasterfile graphics (Sun) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Supplementary dictionary files (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Autosave file for document (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Simple Vector Format 2D image (Microstation) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Autosave file for glossary (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Scalable vector graphics file (Adobe) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (Sonique) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Autosave file for style sheet (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Interchange file format, 8SVX/16SV From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sound file (Amiga 8SVX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database file (SAVVY/PC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raw signed Word (16bit) data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Shockwave audio file in Macromedia Director (an MP3 file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Object (ShockWave Flash) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Swag Packet file (SWAG Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document backup file (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Swap file (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Swap file (DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Smartpix symbol library (Ami Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Symbol file (Harvard Graphics 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Backup of startup files (QEMM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Precompiled header file (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program symbol table (Generic to compilers) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Symbol file (Harvard Graphics 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
SDSC Synu image file (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Synonym file (Microsoft Word 5.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (SPSS/PC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (SYGRAPH) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (SYSTAT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
System file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
System file Device driver or hardware configuration file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics symbols (Harvard Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Wave file (Yamaha SV-series) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source file (TADS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Tape archive (TAR) (Without compression) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Tester symbol file (ReaGeniX code generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Modeling software file (Sonata CAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Temporary file for sorting index (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Emulator tape image file (Commodore 64) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Guitar Tablature file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Table file (MapInfo GIS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
image bitmap file (TIFF) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Query tag name file (DataFlex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Turbo assembler help file (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text illustration file (TypeAlign) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://searchEnterpriseLinux.techtarget.com/sDefinition/0,,sid39_gci213093,00.html> Tape Archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (TAR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
tarred directory tree. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
See tarball. From Binh http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed ASCII archive (COMPRESS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed ASCII archive (TAR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Gzip/Tape archive (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font file (Borland Turbo C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font file (Borland Turbo C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax document (Imavox TurboFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Interactive multimedia files (Asymetrix Toolbook) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Memo backup file (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Memo backup file (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Toolbook file (Asymetrix Toolbook) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics (Native format) (Pagemaker TableEditor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Table of values (OS/2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text elements (Microsoft Word for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Table (Project Scheduler 4) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file (Turbo C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Turbo C Help file (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Script in the TCL/TK Language From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Tcl/Tk source code (programming language). From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Drawing file (TurboCAD for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file (Turbo Debugger for DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Disk image file (Teledisk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file (Turbo Debugger for WIN32) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Saved track design (Roller Coaster Tycoon) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database file (TACT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database file (Thumbs Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A file format use by the Imagine & Turbo Silver ray-tracers From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font file (TheDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Typeface definition file (Speedo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Help file (Turbo Debugger0 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Keystroke recording file (Turbo Debugger) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Symbol table (Turbo Debugger) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file (Turbo Debugger for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax document (Relisys TEFAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Hostfile (Telnet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Input template (IconAuthor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Turbo Editor Macro Language script (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datasheet file (Idealist) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
TEX or LATEX document. LATEX is for document processing and typesetting. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
TEX text file (Scientific Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Texture file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Texinfo source. Info pages are compiled from these. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file (Turbo Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Area file (Turbo Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Catalogue file (Tobi's Floppy Disk Cataloguer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Help file (Turbo Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Form file (Form Tool Gold) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
LATEX font metric file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Tagged font metric file (TeX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
TeX font metrics file (TeX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Statistics file (Turbo Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project file (On Target) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Targa bitmap (Adobe Acrobat,TrueVision) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Targa bitmap (Countour Mortgage Loan Format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
TARGA image file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Winpoint Loan file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Movie file (Dungeon Keeper 2) (Bullfrog Software) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Video file (Electronic Arts) (Need for Speed I/II/III, NBA '96) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Directory tree that has been archived with tar, and then compressed with gzip. Also a package for the Slackware distribution. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Gzip/Tape archive (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Desktop theme (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Thumbnail image file (Microsoft Clip Gallery v.1.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Thumbnail (Graphics Workshop for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Thesaurus dictionary (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Tag image bitmap file (TIFF) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://WhatIs.techtarget.com/definition/0,,sid9_gci214180,00.html> From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
TIFF image file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Map file (Tiger) (Used by the US Government to distribute Map files) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fuzzy Logic knowledge base file (Togai InfraLogic Fuzzy-C Compiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Texture/Image file (Playstation) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Tile set (MahJongg 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
backup files (VAXTPU Editor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
OLE type library files (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Reference table (Bubble Editor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text library (VAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Type library (Visual C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled tool command language source code file (Swat) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Two-Line element set (NASA) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project timeline file (Microsoft Project) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (Trellix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Tagged font metric file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Ztg global optimizer default optimizer file (Zortech C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Temporary file (Microsoft Windows) (ALL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Script file (Telemate) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (BitWare) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Table of contents file (Eudora Mailbox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (Kodak Photo Enhancer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Self-Extracting archive (Atari ST) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
The Operation System for Atari line of 16/32 and 32/32 computers From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file (Turbo Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Sesson-state file (Turbo Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Template file (Harvard Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Saved picture file (Roller Coaster Tycoon) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Downloadable PCL Soft font file backup (HiJaak) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Downloadable PCL Soft font file (HiJaak) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Help file (Turbo Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Encrypted lesson file (TutorPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Residents units library (Turbo Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Template file ( Cakewalk Audio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Template file (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Template file (Harvard Graphics 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project file (Teleport Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Protected mode units (Borland Pascal 7.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Command file (VAXTPU Editor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Turbo Pascal Unit (Turbo Pascal)(BGI) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Packed graphics file (TutorPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Packed wave files (TutorPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Session-state file (Turbo Profiler for Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Turbo Pascal Unit (BGI) (Turbo Pascal for Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (ULead Photo Express) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (GNUzip) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (TAR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Session-state settings (Turbo Charge Debugger for DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Session-state settings (Turbo Charge Debugger for Win32) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Saved game file (Coaster) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Debug support file (Power CTrace) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Directory tree file (PC-Tools) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Script file (Kermit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Terminal file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Terminal settings file (Microsoft Windows 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project usage log (MKS Source Integrity) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Translation support file (Quattro Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Executable file (MicroGraphix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Session-state settings (Turbo Debugger for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer test file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
TrueType font (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Truetype font. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Translation tool kit file (Corel Catalyst) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Client access data specification file (AS/400) (Server to Client) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Tutorial file (Many programs use this suffix for their tutorials) (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Table view settings (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Overflow file above insert point in document 1 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Overflow file above insert point in document 2 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Overflow file above insert point in document 3 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Overflow file above insert point in document 4 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Overflow file above insert point in document 5 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Overflow file above insert point in document 6 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Overflow file above insert point in document 7 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Overflow file above insert point in document 8 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Overflow file above insert point in document 9 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Table view settings (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (TABWorks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Template file (TagWrite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
MS-DOS text From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Encoded briefing file (Descent/D2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (FREEZE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (TAR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Tax exchange format (Quicken and others) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Support file (TeX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ASCII <http://WhatIs.techtarget.com/definition/0,,sid9_gci211600,00.html> text-formatted data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Plain English text file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Wave file (Yamaha TX16W) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Time Stamp files (PageMaker 4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Old compression file (TAR), (COMPRESS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (Tar) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
User agent profile (Used by wireless telephony applications) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raw unsigned byte (8-bit) data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed archive (UltraCompressor II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
New compressed archive (UltraCompressor II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image filter (Photostyler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Unique Database (Microsoft Windows NT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raw unsigned doubleword (32-bit) data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Encrypted archive (UltraCompressor II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Object file (Ulead) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Drawing file (AutoCAD and others) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Binary file (Universal Hint System) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Espire source code (Geoworks UI Compiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
User interface file (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Long prompts for Microsoft Windows (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Espire header file (Geoworks UI Compiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio file (ULAW) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
(CCITT G.711) audio (US Telephony) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Uploaded file information (Procomm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music module (MOD) (UltraTracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Backup file (archive) (MemMaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Forcast Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
UniMod music module (MOD) (MikMod) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (Unix specific information) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Updated program data (dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Updated program data (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program file (ULead Photo Impact) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled updated datafile (dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Saved Image file (ULead Photo Express) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Universal radar format (Radar ViewPoint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Internet shortcut file (Universal Resource Locator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source Integrity file (MKS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer font w/updated USACII extended character set (Pagemaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audit trail file (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
User database file (Procomm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
User database file (Tour) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
User database file (Turbo C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed ASCII archive (UUDE/ENCODE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
UU-encoded file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Executable compressed ASCII archive (UUDE/ENCODE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
UU-encoded file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Raw unsigned 16-bit) datafile (Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Wave file (UltraTracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Consistency check support file (ReaGeniX Code Generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Main image input file (Vivid 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
8-bit audio file (CoVox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Asset management document (Milliplex OmniValue) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Validity checks/referential integrity checks (Paradox for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Values list object file (dBase Application Generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Animation file (VistaPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Annotated speech file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ASCII text file for data dictionary (Sterling Software Groundworks, COOL Business Team Enterprise Model) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Variable file (IconAuthor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
VBase file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project file (Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Remote automated registration file (Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Script file (Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Workspace file (Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Custom control file (Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual basic extension (Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Include file with color definitions (Vivid 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (VisaCalc) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Unformatted voice file (Natural Microsystems) (NMS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Unformatted voice file (used by Cool Edit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file; defines objects for use with Sense8's WorldToolKit (Vevi) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Virtual card file (Many programs use this extension) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Virtual card file (Netscape) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Class library (Microsoft FoxPro) (MFC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual workbench information file (Microsoft Visual C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Class library (Microsoft FoxPro)(MFC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics image (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Targa bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Drawing file (ComputerEasy Draw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
3D drawing file (CAD( (Ashlar) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
View file (Clipper 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
View file (Lotus Approach) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Clip art file (PrintMaster Gold) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Voting form (Voter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Voting form for customers (VFN) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Video graphics array (Font type for display on a VGA Monitor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Video graphics array (Monitor type, also defines if your monitor is compliant with the new (1994) SVGA (Super Video Graphics Array) (SVGA) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Visual display driver ( Generic CADD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (Jovian Logic VI) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Virtual Instrument file (National Instruments LABView) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (Vicar) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bethesda video files (Terminator, Future Shock) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap graphics (YUV12C M-Motion Frame Buffer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Screen device driver (Microsoft Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Shell monitor file (Microsoft DOS v.5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Khoros Visualisation image (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Khoros Visualisation image (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics Image (Viking) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
File identified as a virus-infected file by Norton AntiVirus and possibly others From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics image file (VIS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Streaming video file (VivoActive) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
dVS/dVISE file (Division) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Library file (Corel Ventura) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Drafting program file (Vellum, by Ashler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Virtual memory file (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Virtual memory configuration file (Adobe Acrobat Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
On-line video file (Sierra) (Torin's Passage) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio file (FaxWorks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Font characteristics file (Ventura Publishing) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Vector markup language (used by Microsoft Office 2000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file with vms specific information From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Include file with object definiton (Vivid 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Encrypted video and audio files used on current DVD's (Digital Video Disk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio file (Creative Labs Sound Blaster) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio file (Quartet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio format (Soundblaster's own format). From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Object folder (VZ Programmer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio file (Talking Technology) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dialogic audio file coded using ADPCM <http://WhatIs.techtarget.com/definition/0,,sid9_gci213763,00.html> From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Formatted voice file (Natural Microsystems) (NMS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Publication (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics image file (VPGraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Video files (Westwood Studios) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
VQ Locator file (Yamaha Sound) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
VQ file (Yamaha Sound) (possible emerging standard) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
VQ Locator file (Yamaha Sound) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Configuration file (Oracle 7) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Overlay file (Quattro Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A VRML file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project file (VXRexx) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Video device driver (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Include file w/surface definition (Vivid 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Drawing file (flow chart or schematic)(Shapeware Visio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Download List file (GetRight) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Simulation model (VisSim) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data print file (Schedule Soft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image sprite (SPX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Smartshapes image file (Shapeware Visio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Stencil file (Shapeware Visio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bitmap graphic file (TrueVison Vista) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Targa bitmap (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Workspace file (Shapeware Visio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Animation file (3D Studio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
View file (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
View file (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (Volkswriter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio MetaSound plug-in (VoxWare Audio Compression Toolkit version 2.02.61) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio plug-in (Voxware MetaVoice Toolkit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
File viewer (PC Tools) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Virtual device driver (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Word chart file (APPLAUSE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer font (AST TurboLaser) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer font (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Startup file (Microsoft Windows 3.1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
W3Launch file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Temporary file for Sort or Index (dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Outlook file (Microsoft Outlook, Outlook Express) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://WhatIs.techtarget.com/definition/0,,sid9_gci213332,00.html> Large file for Doom game containing video, player level, and other information From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Texture file (Quake 2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Script source code file (Procomm Plus Aspect) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
<http://WhatIs.techtarget.com/definition/0,,sid9_gci213473,00.html> Waveform sound (Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio format (sound files common to Microsoft Windows). From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compiled script file (Procomm Plus Aspect) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Notebook (QuattroPro for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (QuattroPro for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (QuattroPro for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (Webshots) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Batch file (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Backup file (Microsoft Word for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Upload file (Argo Webload II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WordBar File (Crick Software) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Batch file (WinBatch) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Wordbar template (Crick Software) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro token list file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data transmission file (Microsoft Works) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro (WordPerfect fdor Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Product information description file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database file (Info Select) by (Micro Logic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Database file (Microsoft Works) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WebArt data file (database file that can be converted for use in many programs) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
Web document (Corel Zara) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Web source code file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Bank file (Maui/Rio/Monterey) (Turtle Beack WaveFront) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio waveform (WaveForm Manager Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Drum set (Maui/Rio/Monterey)(Turtle Beach WaveFront) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Flowchart file (Winflow) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Windows form (Virtual dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Symbol (Corel Draw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Program file (Turtle Beach WaveFront)(Maui/Rio/Monterey) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (NICOLET (Old Format), see NRF) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (WinFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Worksheet (Lotus 1-2-3/G) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Worksheet (Lotus 1-2-3 for O/S2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (Wild Board Games) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Wavelet compressed bitmap (Corel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Width table (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Wavelet image file (see WI) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WinImage file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Wireless identity module (Used by wireless application protocols) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Window file (dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Window file (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Window preference file (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Script file (Reynolds & Reynolds) (Stores the results of a database query) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
NSREX From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Page wizard (Microsoft Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Wizard file (Microsoft Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (Lotus 1-2-3 v. 1 and 2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (Lotus 1-2-3 v. 3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (Lotus 1-2-3 v. 4) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (Lotus 1-2-3 Educational version) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (Quattro Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (Microsoft Works) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (Symphony 1.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Worksheet spreadsheet (Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Workspace file (Xlisp) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
REND386/AVRIL file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Upload file (Argo Upload I) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (Virtus Walkthrough) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Add-In file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Audio file in Microsoft Windows Media format (Can be changed to ASF) Siren (Sonic Foundry) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Backup files for startup (MathCAD for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (WordMARC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Metafile (Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (NeXT WriteNow) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Outline font description file (CorelDRAW) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Swap file (Microsoft Windows 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Organization chart (Microsoft Windows OrgChart) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
processing documents From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music module (MOD) (Grave Composer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (WordPerfect for Windows 4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (WordPerfect for Windows 5.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (WordPerfect for Windows 6.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Word processor document (ACT!) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Demo file (WordPerfect for Windows) (ALL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (Enable) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax document (WorldPort) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Form file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (Microsoft Word for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Microsoft Word for Windows vector graphics (DrawPerfect) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro (Microsoft Word for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro (Microsoft Word for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text document (Microsoft Works) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Template (Microsoft Word for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
PerfectWorks document (Novell) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed spreadsheet (QuattroPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (QuattroPro/DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (QuattroPro version 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (Symphony 1.1-2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Symphony file (Lotus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Template (Charisma) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
ReGet document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Write document (Windows Write) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project file (CakeWalk Music Audio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Spreadsheet (Symphony 1.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Virtual Reality model From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
3D modeling file (Raindrop Geomagic) (Scandata) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed Amiga archive (WARP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Resource file (Microsoft Word for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Another VRML <http://WhatIs.techtarget.com/definition/0,,sid9_gci214153,00.html> fileject From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (WordStar) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (WordStar for Windows version 1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (WordStar for Windows version 2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (WordStar for Windows version 3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (WordStar for Windows version 4) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (WordStar for Windows version 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (WordStar for Windows version 6) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (WordStar for Windows version 7) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (WordStar for Windows 2000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
WorkSpace file (Fortran PowerStation) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document (WordStar for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Skin (WinAmp) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Used by wireless telephony applications From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Wavelet Compressed Bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Interleaf WorldView format (a PDF format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Button bar for document window (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Keyboard layout file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Add-in file (Microsoft Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music resource file (Relic Entertainment)(Home World) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document file (EXP for Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
AVS image (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Source code file (Lex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macromedia Extra (program extension), 16 bit From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macromedia Extra (program extension), 32 bit From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Corel Xara drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A MIME 'X11" bitmap image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
XML Schema file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer font file (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer font file (Xerox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Printer font file (24 Pin) (ChiWriter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Fax Document (Various) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
eXtensible hypertext markup language From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Instrument file (FastTracker II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Instrument sample file (ScreamTracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (Pagis) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file (Xerox) (same as TIF) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Image file eXtended (ScanSoft) the file is similar to TIFF and is a From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Wang imaging file (Included with Windows 95) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Add-in file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Archive (Xlib) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Toolbar file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Chart file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dialogue file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Backup file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Add-in file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Dynamic link library (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Worksheet file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Template file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Translation table (Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Translation table (Procomm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Translation table (Symphony) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
VBA module (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Workbook (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Music module (MOD) (Fast Tracker 2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed midi music (eXtended) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
eXtensible markup language From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
XML source file. See XML. From Binh http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Network file (Standard) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Shortcut file (Microsoft Exchange) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Datafile (Axon) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
X BitMap format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
XPM image file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Executable file (Waffle) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Macro file (SuperCalc) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (Epic Megagames Xargon) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Cross-reference file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
External translation table (LocoScript) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (Xtree) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
X Window Dump format (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Works file (Yamaha XG) (MIDI <http://WhatIs.techtarget.com/definition/0,,sid9_gci212572,00.html> sequencing) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Keyboard mapping file (Crosstalk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Session file (Crosstalk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (Xerox Writer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed ASCII archive (XXENCODE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed ASCII archive (XXENCODE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
XXXX From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Text file (XYWrite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document file (XYWrite III) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document file (XYWrite IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document file (XYWrite III Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Document file (XYWrite for Windows 4.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed Amiga archive (YABBA) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Grammar file (Yaac) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
yacc source file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Clipart library (Arts & Letters) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Yearbook file (Microsoft Encarta) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (YUV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed file archive (YAC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed ASCII archive (COMPRESS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
Unix file Compressed From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Game module (Infocom) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed file (FileWrangler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Software installation settings file (Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed text document (Zview) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Data file (Zerberus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Graphics file (ZenoGraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
File compressed with the pkzip (or PKZIP.EXE for DOS) compression program. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Zip file Compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Compressed Amiga archive (ZOOM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
An early compressed file format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Voice file (Zyxel Z-Fax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Temporary file (1ST Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
AppExpert project database file (Borland C++ 4.5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project backup file (Borland C++ 4.5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Menu backup (Norton Commander) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Project backup file (Terramodel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
A directory containing executable programs, primarily binary files. From I-gloss http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
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. From Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
100 Voice Grade [technology] From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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. From LWN Distribution List http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Double Sided - Double Density (FDD) From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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 From Binh http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
3D Device Dependent Interface (MS), "3D DDI" From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
3 Dimensional Random Access Memory (RAM) From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
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
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
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
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
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
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
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
3rd Generation . Internet Protocol (org., IP, GPRS, WLAN, mobile-systems), "3G.IP" From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
3rd Generation Language From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Third Generation Partnerships Projects (org.) From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
/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. From Jargon Dictionary http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
4th Generation Language From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
4 GB [RAM] Tuning (RAM, GB) From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
5th Generation Language From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
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. From Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
Standard protocol for radio-frequency wireless data transmission and networking. Also called Wi-Fi. From Redhat-9-Glossary http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
802.11 High Rate (IEEE, WLAN), "802.11/HR" From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
Command to print date and time in RFC822 format From whatis http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
8 Phase Shift Keying (EDGE, mobile-systems) From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
8-Vestigial Side Band, "8-VSB" From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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
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
check file types and compare values From whatis http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
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). From Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html