Библиотека сайта rus-linux.net
Punctuation
- $BASH environment variable
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
- $BASH_VERSION environment variable
Expands to the version number of this instance of bash. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- $CDPATH environment variable
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
- $ENV environment variable
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
- $FIGNORE environment variable
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
- $HISTCMD environment variable
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
- $HISTCONTROL environment variable
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
- $HISTFILE environment variable
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
- $HISTFILESIZE environment variable
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
- $HISTSIZE environment variable
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
- $HOME environment variable
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
- $HOSTFILE
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
- $HOSTTYPE
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
- $IFS
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
- $IFS
The Internal Field Separator that is used for word splitting after expansion and to split lines into words with the read builtin command. The default value is ``<space><tab><newline>''. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- $IGNOREEOF
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
- $INPUTRC environment variable
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
- $LINENO
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
- $MAILCHECK
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
- $MAILPATH
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
- $MAIL_WARNING
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
- $OLDPWD
The previous working directory as set by the cd command. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- $OSTYPE
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
- $PATH
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
- $PATH
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
- $PROMPT_COMMAND
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
- $PS1
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
- $PS2
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
- $PS3
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
- $PS4
The value of this parameter is expanded and the value is printed before each command bash displays during an execution trace. The first character of PS4 is replicated multiple times, as necessary, to indicate multiple levels of indirection. The default is ``+ ''. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- $PWD
The current working directory as set by the cd command. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- $RANDOM
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
- $SECONDS
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
- $SHLVL
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
- .#01
and higher A method of numbering picture files for a roll of film that has been scanned for computer presentation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .$$$
Used by OS/2 to keep track of archived files From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .(Pagis)
native format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .000
Data file (GEOWorks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .000-20009
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
- .001-999
Database index files used by (Superbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .1-STEP
Backup file (Iomega Backup) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .113
Backup data file (Iomega Backup) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .123
Lotus 123 97 file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .12M
Smartmaster file (Lotus 1-2-3 '97) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .1ST
Documenting wizard list (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .2D
Two-dimensional drawing file (VersaCAD) (http://www.versacad.com/vcadhome.htm) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .2GR
and 3GR VGA Graphics driver/configuration files (Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .386
A file for use in an 80386 or higher microprocessor From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .3D
Three-dimensional drawing file (VersaCAD) (http://www.versacad.com/vcadhome.htm) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .3DM
3D NURBS modeler, (Rhino) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .3DS
A file in 3D Studio (for DOS) format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .411
Data file (Used by digital cameras) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .4GE
Compiled code (Informix 4GL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .4GL
Source code (Informix 4GL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .4V
Music file (Quartet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .669
Music mod file (Composer 669)(Unis Composer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .669
Tracker module (Composer 669) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .8
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
- .a
Archive. lib*.a is a static library. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .A
Library file (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .A
Object code library From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .A3L
Authorware 3.x library From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .A3M
Authorware MacIntosh file (unpackaged) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .A3W
Authorware Windows file (unpackaged) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .A4L
Authorware 4.x library From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .A4M
Authorware MacIntosh file (unpackaged) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .A4P
Authorware file (packaged without runtime) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .A4W
Authorware Windows file (unpackaged) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .A5L
Authorware 5.x library From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .A5W
Authorware Windows file (unpackaged) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AA
Audible audio file (commonly used for downloadable audio books) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AAM
Authorware shocked file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AAS
Authorware shocked packet From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AB
Applix Builder file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ABF
Adobe Binary Screen Font From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ABK
Backup file (PrintMaster Gold) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ABK
Corel Draw AutoBackup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ABM
Audio album file (HitPlayer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ABO
Applix Builder Turbo file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ABS
MPEG Audio Sound file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ABS
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
- .ABS
Standard GNU compiler output file for a PC platform From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ACA
HTTP animation file (Microsoft Agent) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ACA
Project Manager Workbench file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ACB
ACBM Graphic image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ACC
DR-DOS Viewmax file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ACD
Character definiton file (Microsoft Agent) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ACE
ACE Archiver Compression <http://searchStorage.techtarget.com/sDefinition/0,,sid5_gci211828,00.html> file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ACF
HTTP character file (Microsoft Agent) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ACI
ACI development appraisal (ACIWEB) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ACL
Corel Draw 6 keyboard accelerator file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ACM
Dynamic Link Library (DLL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ACM
Interplay compressed sound file (Fallout 1,2, Baulder's Gate) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ACM
Windows system directory file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ACP
Microsoft Office Assistant Preview file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ACR
American College of Radiology file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ACS
Character structered storage file (Microsoft Agent) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ACT
Action Presentation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ACT
Documenting wizard action diagram (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ACT
FoxPro Foxdoc Action Diagram From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ACT
Microsoft Office Assistant Actor file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ACV
Used to Compress and decompress audio data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AD
After Dark screensaver From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .Ada
<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
- .ADB
Ada source text body file (GNAT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ADB
HP 100LX Organizer Appointment database From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ADC
Scanstudio 16 color Bitmap Graphic file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ADD
OS/2 adapter driver file used in the boot process From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ADF
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
- .ADI
AutoCAD device-independent binary plotter file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ADL
QEMM Mca adaptor description library From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ADM
After Dark MultiModule screensaver (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ADM
Windows NT <http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci213368,00.html> policy template From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ADN
Lotus 1-2-3 Add-In file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ADP
Astound Dynamite file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ADP
Dynamic Page file (AOLserver) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ADP
FaxWorks Faxmodem setup file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ADR
After Dark Randomizer screensaver From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ADR
Smart Address address book From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ADS
Ada source text specification file (GNAT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ADT
AdTech Fax file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ADT
HP NewWave datafile for card applications From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ADX
Archetype Designer Document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ADX
Dynazip Active Delivery script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ADX
Lotus Approach dBase Index From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ADZ
Packed ADF file (Extracts with WinZip) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AE
Author/Editor file (SoftQuad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AEP
ArcExplorer project file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AF2
ABC FlowCharter 2.0 Flowchart From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AF3
ABC Flowchart From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AFC
Apple Sound file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AFI
Truevision Bitmap graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AFM
Adobe metrics From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AFM
HP NewWave Cardfile application From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AG
Applix graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AI
Adobe Illustrator drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AI
Corel Trace drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AIF
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
- .AIFC
Similar to AIF (compressed) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AIFF
<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
- .AIM
AOL Instant Messenger Launch file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AIN
AIN Compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AIO
APL transfer file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AIS
ACDSee Image Sequence From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AIS
Velvet Studio Instruments file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AIS
Xerox Arry of Intensity Samples Graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AIX
HP NewWave Cardfile Application data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AKW
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
- .ALAW
European Telephony audio From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ALB
JASC Image Commander album From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ALI
Document file (SAP proprietary format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ALIAS
Alias Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .alias
X Window System font alias catalog. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ALL
Arts & Letters Library From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ALL
WordPerfect for Windows General printer information file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ALS
Alias Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ALT
WordPerfect Library Menu From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AM
Applix SHELF Macro From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AMF
DSMIA/Asylum module music (Crusader,No Remorse,Aladdin) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AMF
Music file (Advanced Module Format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AMG
ACTOR System image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AMG
AMGC Compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AMI
Annotation file (Cocreate SolidDesigner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AMS
Extreme's Tracker module From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AMS
Velvet Studio music module (MOD) file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AN
Text file (Sterling Software) (Groundworks COOL Business Team Model) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ANC
Canon Computer Pattern Maker file that is a selectable list of From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ANI
Microsoft Windows Animated cursor From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ANM
DeluxPaint Animation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ANN
Windows 3.x Help annotation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ANS
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
- .ANT
SimAnt for Windows saved game From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AOS
Nokia 9000 Add-on software From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AOT
Applicatio binary object template file (ZenWorks snAPPshot) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AP
Applix Presents file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AP
WHAP Compressed Amiga archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APC
Compiled application file (Centura Team Developer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APC
Lotus 1-2-3 Printer driver From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APD
Dynamic application library file (Centura Team Developer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APD
Lotus 1-2-3 Printer driver From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APF
Lotus 1-2-3 Printer driver From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APF
Project file (Allaire) (Created by Homesite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .API
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
- .API
Lotus 1-2-3 Printer driver From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APL
APL Workspace file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APL
Application library file (Centura Team Developer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APP
dBase Application Generator Object From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APP
DR-DOS Executable Application From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APP
FoxPro Generated Application From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APP
Generated application or active document (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APP
Normal mode application file (Centura Team Developer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APP
Symphony Add-in Application From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APR
ArcView project file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APR
Employee Appraiser Performance Review file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APR
Lotus Approach 97 View file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APS
Advanced patching systems with error checking, (Similar to IPS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APS
Microsoft Visual C++ file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APT
Lotus Approach Data view file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APT
Text mode application file (Centura Team Developer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APX
Borland C++ Appexpert database From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .APX
Lotus Approach Paradox-Specific information file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AQ
Applix data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ARC
LH ARC (old version) compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ARC
SQUASH Compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ARF
Automatic Response file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ARI
ARI Compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ARI
Aristotle audio file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ARJ
Robert Jung ARJ compressed archive (ARJ) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ARK
ARC File Archiver CPM/Port archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ARL
AOL v4.0 organizer file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ARR
Atari Cubase Arrangement From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ART
AOL Image file compressed using the Johson-Grace compression algorithm From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ART
Canon Crayola art From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ART
Clip Art From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ART
First Publisher Raster graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ART
Ray Tracer file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ART
Xara Studio drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ARX
ARX Compressed Archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AS
Applix Spreadsheet From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASA
Microsoft Visual InterDev <http://searchDatabase.techtarget.com/sDefinition/0,,sid13_gci213682,00.html> file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASC
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
- .ASC
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
- .ASD
Astound Presentation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASD
Lotus 1-2-3 Screen driver From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASD
Microsoft Advanced Streaming Format (ASF) description file; opens From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASD
WinWord AutoSave file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASE
Velvet Studio Sample file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASF
Lotus 1-2-3 Screen font From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASF
Microsoft Advanced Streaming Format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASF
Music file (Electronic Arts) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASF
StratGraphics Datafile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASH
TASM 3.0 Assembly language header From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASI
Borland C++/Turbo C Assembler Include file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASM
Assembler <http://search390.techtarget.com/sDefinition/0,,sid10_gci211604,00.html> Language source file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASM
Pro/E assembly file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASO
Astound Dynamite Object From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASP
<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
- .ASP
Astound Presentation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASP
Procomm Plus setup and connection script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AST
Astound multimedia file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AST
Claris Works "assistant" file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASV
DataCAD Autosave file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASX
Cheyenne Backup script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASX
Microsoft Advanced Streaming Redirector file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ASX
Video file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AT2
Aldus Persuasion 2.0 Auto Template From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ATM
Adobe Type Manager data/info file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ATT
AT&T Group 4 bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ATW
AnyTime Deluxe for Windows personal information manager file from From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .au
Audio format (original Sun Microsystems generic sound file). From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AU
Audio U-law (pronounced mu-law) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AU
Sun/NeXT/DEC/UNIX sound file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AUD
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
- .AUX
ChiWriter Auxilliary Dictionary file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AUX
TeX/LaTeX Auxilliary Reference file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AVA
Avagio Publication From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AVB
Inculan Anti-Virus virus infected file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AVI
Microsoft Audio Video Interleaved file for Windows movie From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .avi
Video format. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AVR
Audio Visual Research file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AVS
Application Visualization System file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AVS
Stardent AVS-X Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AVX
File Extension (ArcView) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AW
Applix Words file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AW
HP AdvanceWrite Text file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AWD
FaxView Document image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .awk
awk program source file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AWK
AWK Script/Program From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AWM
Animation Works Movie From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AWR
Telsis file for digitally stored audio From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AWS
StatGraphics Data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AXL
ArcIMS XML project file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AXT
ASCII application object template (ZenWorks snAPPshot) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .AXX
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
- .B
Applause Batch list From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .B&W
1st Reader Mono binary screen image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .B&W
Atari/Macintosh black and white graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .B1N
1st Reader Mono and color binary screen image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .B30
ABC Ventura publisher printer font From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .B4
Helix Nuts and Bolts file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .B8
Raw graphic file (Piclab Plane II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BAD
Oracle bad file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BAK
Backup file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BAL
Ballade Music score From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BAR
dBase Application Generator Horizontal menu object From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BAS
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
- .BAT
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
- .BB
Papyrus Database backup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BBL
TeX/BibTeX Bibliographic reference file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BBM
Deluxe Paint Bitmap image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BBS
Bulletin Board Sytem text From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BCH
Batch Process Object (dBase Application Generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BCH
Datalex Entry Point 90 Data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BCM
Microsoft Works Communications file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BCO
Bitstream Outline font description file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BCP
Borland C++ Makefile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BCW
Borland C++ 4.5 Environment settings file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BDB
Microsoft Works Dababase file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BDF
Egret Datafile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BDF
West Point Bridge Designer file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BDR
Microsoft Publisher Border From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BEZ
Bitstream Outline font description From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BF2
Bradford 2 Font From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BFC
Windows 95 Briefcase Document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BFM
Font Metrics file (Unix/Mainframe) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BFX
Fax document file (BitFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BG
Microsoft Backgammon Game file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BGA
OS/2 Graphic array From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BGI
Borland Graphics Interface Driver From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BGL
Microsoft Flight Simulator Scenery file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BHF
pcAnywhere Host file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BI
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
- .BIB
Bibliography file (ASCII) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .bib
bibtex LATEX bibliography source file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BIB
Database From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BIB
TeX/BibTeX Literature Database From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BIF
GroupWise initialization file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BIF
Image Capture Board Binary Image black & white graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BIFF
XLITE 3D file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BIN
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
- .BIO
OS/2 Bios file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BIT
X11 Bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BK
Backup file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BK
JetFax Faxbook file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BK!
WordPerfect for Windows Document backup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BK$
Backup file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BK1
WordPerfect for Windows Timed backup file for document window 1 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BK2
WordPerfect for Windows Timed backup file for document window 2 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BK3
WordPerfect for Windows Timed backup file for document window 3 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BK4
WordPerfect for Windows Timed backup file for document window 4 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BK5
WordPerfect for Windows Timed backup file for document window 5 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BK6
WordPerfect for Windows Timed backup file for document window 6 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BK7
WordPerfect for Windows Timed backup file for document window 7 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BK8
WordPerfect for Windows Timed backup file for document window 8 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BK9
WordPerfect for Windows Timed backup file for document window 9 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BKP
TurboVidion Dialog Designer Backup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BKS
IBM BookManager Read bookshelf file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BKS
Microsoft Works Spreadsheet Backup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BKW
FontEdit Fontset mirror image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BLB
Resource archive (DreamWorks),(Neverhood) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BLD
BASIC Bloadable picture file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BLK
Alias Wavefront Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BLK
WordPerfect for Windows Temporary file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BM
Windows system Bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BM1
Apogee BioMenace data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BMF
Corel Gallery file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BMK
Windows Help bookmark From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .bmp
Microsoft Bitmap file image format. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BMP
Windows or OS/2 bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BN
Instrument bank file (AdLib) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BNK
Instrument Bank file (AdLib) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BNK
Sound effects bank file (Electronic Arts) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BOL
Compressed archive library file (Microsoft Booasm.arc) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BOM
Bill of materials file (Orcad Schematic Capture) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BOO
Microsoft Booasm.arc Compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BOOK
Adobe FrameMaker Book From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BOX
Lotus Notes file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BPC
Business Plan Toolkit Chart From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BPL
Borland Delphi 4 packed library From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BPS
Microsoft Works Document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BPT
CorelDraw Bitmap fills file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BPX
Truevision Targa Bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BQY
BrioQuery file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BR
Bridge Script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BRD
Eagle Layout file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BRK
Brooktrout Fax-Mail file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BRW
Application file associated with financial institution(s) loan applications From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BRX
A file for browsing an index of multimedia options From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BRZ
DbBRZ file for very large Db backup or restore From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BS1
Apogee Blake Stone data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BSA
BSARC Compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BSC
Apple II Compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BSC
Fortran Pwbrmake Object From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BSC
MS Developer Studio (MSDev) browser information From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BSP
Quake map file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BS_
Microsoft Bookshelf Find Menu shell extension From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BTM
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
- .BTR
Database file (Btrieve 5.1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BUD
Backup disk for Quicken From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BUG
Bugs and Problems file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BUN
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
- .BUP
Backup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BUT
Buttons! Button definition From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BUY
Movie data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BV1
WordPerfect for Windows Overflow file below insert point in document 1 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BV2
WordPerfect for Windows Overflow file below insert point in document 2 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BV3
WordPerfect for Windows Overflow file below insert point in document 3 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BV4
WordPerfect for Windows Overflow file below insert point in document 4 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BV5
WordPerfect for Windows Overflow file below insert point in document 5 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BV6
WordPerfect for Windows Overflow file below insert point in document 6 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BV7
Wordperfect for Windows Overflow file below insert point in document 7 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BV8
WordPerfect for Windows Overflow file below insert point in document 8 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BV9
WordPerfect for Windows Overflow file below insert point in document 9 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BW
SGI Black and White image file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BW
Silicon Graphics Raw red,green and blue bytes file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BWB
Visual Baler Spreadsheet application From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BWR
Kermit Beware buglist From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BWV
Business Wave file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BYU
BYU Movie From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .BZ
Bzip compressed file (Inix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .bz
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
- .BZ2
Bzip compressed file (Unix) (replaces Bz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .bz2
File compressed with the bzip2 compression program. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .B_W
Atari/Macintosh black and white graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .C
C code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .c
C program source code. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .C
Site configuration for Secure Remote (CheckPoint VPN) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .C--
Sphinx C-- Source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .C00
Ventura Publisher Print file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .C01
Typhoon wave From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .C86
Computer Innovation (C86) Source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CA
Telnet Server Initial cache data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CAB
Microsoft cabinet file (program files compressed for software distribution) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CAC
dBase IV Executable file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CAD
Softdesk Drafix Cad file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CAG
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
- .CAL
Calendar schedule data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CAL
CALS Compressed Bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CAL
SuperCalc 4/5 Spreadsheet From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CAM
Casio camera file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CAN
Navigator Fax From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CAP
Compressed music file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CAP
Telix Session Capture file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CAP
Ventura Publisher Caption From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CAR
AtHome assistant file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CAS
Comma-delimited ASCII file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CAT
dBase Catalogue file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CAT
Quicken IntelliCharge categorization file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CB
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
- .CBC
CubiCalc Fuzzy Logic System file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CBI
Column binary file (used in IBM mainframe systems) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CBL
Cobol Source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CBM
XLib Compiled Bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CBT
Generic Computer based training file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CC
C++ Source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CC
Visual dBASE custom class file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .cc, .cxx, .C, .cpp
C++ program source code. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CCA
cc:mail archive file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CCB
Visual Basic Animated Button configuration file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CCC
Curtain Call Native bitmap graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CCE
Data file (Calendar Creator Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CCF
Multimedia Viewer configuration file used in OS/2 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CCF
Symphony Communications Configuration file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CCH
Corel Chart From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CCL
Intalk Communication Command Language From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CCM
Lotus CC:Mail "box" file (for example, INBOX.CCM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CCO
CyberChat data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CCO
XBTX Graphics From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CCT
Macromedia Director Shockwave cast file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CDA
CD Audio Track From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CDB
CardScan Database (CardScan) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CDB
Clipboard file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CDB
Conceptual model backup file (PowerDesigner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CDB
TCU Turbo C Utilities Main database From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CDF
<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
- .CDF
Netcdf Graphic file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CDFS
Compact Disk filing system (WindRiver) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CDI
Phillips Compact Disk Interactive file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CDK
Atari Calamus Document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CDM
Conceptual data model file (PowerDesigner Data Architect) (Sybase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CDM
Conceptual model file (PowerDesigner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CDM
Visual dBASE custom data module From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CDR
Corel Draw Vector drawing file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CDR
Raw Audio-CD data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CDT
Corel Draw template From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CDT
CorelDraw Data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CDX
Corel Draw compressed drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CDX
Microsoft's Visual Foxpro <http://searchDatabase.techtarget.com/sDefinition/0,,sid13_gci213705,00.html> index From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CE
The FarSide Computer Calendar Main CE file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CEG
Tempra Show Bitmap graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CEL
AutoDesk Animator Cel Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CEL
CIMFast Event Language file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CER
Certificate file (MIME x-x509-ca-cert) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CF
Imake Configurtion file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .cf, .cfg
Configuration file or script. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CFB
Comptons Multimedia file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CFG
Configuration file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CFL
CorelFLOW Chart From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CFM
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
- .CFM
Corel FontMaster file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CFM
Creative FM-Music From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CFM
Visual dBASE Windows customer form From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CFN
Atari Calamus Font data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CFO
TCU Turbo C Utilities C form object From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CFP
The Complete Fax Portable fax file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CGA
Ventura Publisher Display font file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CGI
<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
- .cgi
Executable script that produces web page output. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CGM
Computer Graphic Metafile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CH
Clipper 5 Header From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CH
OS/2 configuration file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CH3
Harvard Graphics 3.0 Chart From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CH4
Charisma 4.0 Presentation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CHD
FontChameleon Font descriptor From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CHF
pcAnywhere remote control file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CHI
ChiWriter Document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CHK
File fragments saved by Windows Disk Defragmenter or ScanDisk From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CHK
WordPerfect for Windows Temporary file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CHL
Configuration History Log From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CHM
Compiled HTML file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CHN
Ethnograph Data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CHP
Ventura Publisher Chapter file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CHR
Character Sets (Font file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CHT
ChartMaster dBase Interface file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CHT
ChartViewer file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CHT
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
- .CIF
CalTech Intermediate Graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CIF
Easy CD Creator image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CIF
pcAnywhere caller file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CIL
Clip Gallery download package file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CIM
Sim City 2000 file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CIN
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
- .CIX
TCU Turbo C Utilities Database Index From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CK1
iD/Apogee Commander Keen 1 data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CK2
iD/Apogee Commander Keen 2 data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CK3
iD/Apogee Commander Keen 3 data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CK4
iD/Apogee Commander Keen 4 data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CK5
iD/Apogee Commander Keen 5 data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CK6
iD/Apogee Commander Keen 6 data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CKB
Borland C++ Keyboard mapping file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CL
Generic LISP Source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CL3
Layout file (Adaptec Easy CD Creator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CLASS
Java class From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CLG
Disk Catalog database From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CLL
Cricket Software Clicker File From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CLO
Cloe Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CLP
Clipper 5 Compiler Script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CLP
Quattro Pro Clip art From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CLP
Windows Clipboard From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CLR
1st Reader Binary color screen image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CLR
PhotStyler Color defintion From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CLS
C++ Class Definition From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CLS
Visual Basic Class Module From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CM
Craftman Data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CMA
Database file in plain text format (APPLIX TM1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CMD
1st Reader External Command Menu From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CMD
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
- .CMD
dBase-II program file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CMD
DOS CP/M command file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CMF
Corel Metafile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CMG
Chessmaster saved game From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CMK
Card Shop Plus file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CMM
CEnvi Batch file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CMP
Address document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CMP
CorelDRAW 4.0 Postscript Printer Header From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CMP
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
- .CMP
Microsoft Word for DOS User dictionary From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CMP
Route 66 Address Document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CMR
MediaPlayer Movie From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CMV
Corel Move animation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CMX
Corel Presentation Exchange image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CMYK
Raw cyan, magenta, yellow, and black bytes file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CNC
CNC General Program data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CNF
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
- .CNM
Windows application menu options and setup file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CNQ
Compuworks Design Shop file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CNT
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
- .CNV
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
- .CNV
Word for Windows Data conversion support file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CNV
WordPerfect for Windows Temporary file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .COB
COBOL Source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .COB
trueSpace 2 object From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .COD
dBase Application Generator Template source file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .COD
FORTRAN Compiled code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .COD
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
- .COD
Video Text file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .COL
AutoDesk Animator Color Palette From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .COL
Microsoft Multiplan Spreadsheet From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .COM
Command file (program) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .Compiler
attempts to compile the source files of a Help system From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CON
Simdir Configuration file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .conf, .config
Configuration file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CP8
CP8 256 Gray Scale image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPD
Complaints Desk Script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPD
Corel PrintOffice file (drawing) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPD
Fax Cover document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPE
Fax Cover document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPF
The Complete Fax (Fax file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPH
Image file (Corel Print House) see CPO From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPI
ColorLab Processed Image bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPI
Microsoft MS-DOS code page information From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPJ
CeQuadrant CD Project From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPL
Compel Presentation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPL
Control Panel Module From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPL
Corel color palette From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPO
Image file (Corel Print Office) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPP
C++ Source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPP
CA-Cricket Presents presentation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPR
Corel Presents presentation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPS
Central Point PC Tools Backup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPS
Coloured postscript From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPT
CA-Cricket Presents Template From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPT
Corel Photo-Paint image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPT
dBase Encrypted Memo From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPT
Macintosh Compressed Archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPX
Corel Presentation Exchange compressed drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPY
Data file (Copy Books) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CPZ
COMPOZ Music Text From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CRC
Check file (Win-SFV32) (Fantasia Software) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CRC
Circular reference file (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CRD
Microsoft Windows 3.x Cardfile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CRF
Zortech C++ cross-reference From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CRH
Image file (Microsoft Golf) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CRP
Corel Presents run-time presentation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CRP
dBase IV Encrypted database From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CRP
Visual dBASE custom report From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CRS
WordPerfect 5.1 for Windows File Conversion resource From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CRT
Certificate file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CRT
Crontab file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CRT
Oracle Terminal settings information From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CRU
CRUSH Compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CSA
Comma deliminated text From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CSC
Corel script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CSG
Statistica/w Graph file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CSH
C shell script files (Hamilton Labs) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .csh
csh shell script. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CSM
Borland C++ 4.5 Precompiled header From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CSM
Script file (Kodak Dc265 Camera) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CSO
Customer service data and outcome file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CSP
PC Emcee On-Screen image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CSS
<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
- .CSS
Statistica/w Datasheet From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CSS
Stats+ Datafile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CST
Macromedia Director "Cast" (resource) file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CSV
Comma-separated values file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CSV
CompuShow Adjusted EGA/VGA Palette From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CT
A graphic file associated with the Paint Shop Pro Graphic Editor From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CT
Scitex CT bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CTC
PC Installer Control From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CTF
Symphony Character code translation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CTL
dBase IV Control From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CTL
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
- .CTX
Microsoft Online Course Text From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CTX
Pretty Good Privacy (PGP) Ciphertext file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CTX
Visual Basic User control binary file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CUE
Microsoft Cue Cards data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CUL
Cursor library file (IconForge) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CUR
Windows Cursor From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CURSOR
Sun Microsystems Cursor From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CUT
Dr Halo Bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CV
Corel Versions archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CV
Microsoft CodeView information screen From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CVG
Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CVS
Canvas drawing file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CWK
Claris Works data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CWS
Claris Works template From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CXT
Macromedia Director protected (not editable) "Cast" (resource) file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .CXX
C++ source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .D2D
2D/3D object file (3-D Fassade Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .D64
Commodore 64 emulator disk image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DAO
Windows Registry Backup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DAP
Data access page (Microsoft Access 2000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DAT
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
- .DAT
Data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DAT
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
- .DAT
WordPerfect Merge Data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DB
Borderland's Paradox 7 table database From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .db
Database file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DBC
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
- .DBF
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
- .DBF
Enable database (can be opened with Excel 97) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DBF
Oracle 8.1.x tablespace file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DBK
dBase Database Backup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DBK
Schematic backup file (Orcad Schematic Capture) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DBO
Compiled program file (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DBQ
Paradox Memo From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DBT
dBase Text Memo From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DBV
Memo field file (Flexfile 2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DBW
Microsoft Windows 9.x Database file (DataBoss) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DBX
DataBeam image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DBX
Microsoft's Visual FoxPro <http://searchDatabase.techtarget.com/sDefinition/0,,sid13_gci213705,00.html> Table file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DC
CAD file (DesignCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DC2
CAD file (DesignCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DC5
DataCAD Drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DCA
Document Content Architecture Text file (IBM DisplayWrite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DCA
Visual Basic Active designer cache From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DCF
Data file (Dyadic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DCF
Disk Image file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DCIM
Digital Imaging and Communications in Medicine (image and data) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DCM
DCM module From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DCP
Data CodePage (OS/2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DCR
Shockwave file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DCS
Bitmap Graphics (Quark XPress) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DCS
Datafile (ACT! Activity file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DCS
Desktop Color Separation file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DCT
Database Dictionary file (Clarion Database Developer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DCT
Database SpellCheck Dictionary (Harvard Graphics 3.0-Symphony) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DCT
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
- .DCU
Delphi compiled unit From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DCX
Bitmap Graphics file (Multipage PCX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DCX
Fax image (based on PCX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DCX
Macro file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DCX
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
- .DD
Compressed Archive (Macintosh DISKDOUBLER) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DDB
Bitmap Graphics file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DDF
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
- .DDI
Image File (DISKDUPE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DDIF
Digital Equipment or Compaq file. Used for storing images and their From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DDP
Device Driver Profile (OS/2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .deb
Debian package for the Debian distribution. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DEB
Debug Script (DOS Debug) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DEF
Assembly Header file (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DEF
C++ definition file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DEF
Define Module file (3-D Fassade Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DEF
SmartWare II data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DEFI
Oracle 7 de-install script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DEM
A file with USGS standards for Digital Elevation Models (Vista Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DEM
Demo file (Descent) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DEM
Graphics file (Vista Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DEP
Visual Basic Setup Wizard Dependency file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DER
Certificate file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DEV
Device Driver From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DEWF
Macintosh SoundCap/SoundEdit recorded instrument file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DEZ
Encrypted zip file (DES Encryption) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DFD
Data Flow Diagram Graphic (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DFI
Outline Font description (Digifont) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DFL
Default Program Settings (Signature) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DFM
Data Flow Diagram model (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DFS
Sound File (Delight) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DFV
Printing Form value (Microsoft Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DGN
Microstation95 CAD drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DGS
Diagnostics Report From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DH
Dependency Information file (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DHP
Graphic file (Dr. Halo II-III PIC Format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DHT
Datafile (Gauss) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DIA
Diagraph Graphics file (Computer Support Corporation) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DIB
Device-independent bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DIC
Dictionary file (Lotus Notes, Domino) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DIC
Dictionary file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DICM
Digital imaging and communications in medicine file (DICOM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DIF
Data Interchange Format spreadsheet From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DIF
Data Interchange Output file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DIF
Database file (VisiCalc) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DIF
Text file (Output from Data Interchange Format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .diff
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
- .DIG
Digilink file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DIG
Sound Designer I audio From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DIP
Graphics file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DIR
Dialing Directory (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DIR
Directory (VAX) (DEC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DIR
Macromedia Director file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DIR
Movie (MacroMind Director 4.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .dir
X Window System font/other database directory. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DIS
Distribution file (VAX Mail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DIS
Ray Tracer file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DIS
Thesaurus file (CorelDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DIZ
Description file (Description in ZIP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DKB
Graphics file (Ray Traced DKBTrace) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DL
Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DLD
Datafile (Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DLG
C++ Dialogue Script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DLL
<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
- .DLL
Export/Import Filter (CorelDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DLS
Downloadable sound From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DLS
Interactive music architecture (IMA)(Microsoft),(Blood2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DLS
Setup file (Norton DiskLock) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DMD
Visual dBASE data module From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DMF
Packed Amiga disk image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DMF
X-Trakker music module (MOD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DMO
Demo file (Derive) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DMP
Dump file (Screen or Memory) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DMS
Compressed Archive (Amiga DISKMASHER) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DOB
Visual Basic User document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DOC
DisplayWrite document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DOC
Document format (Interleaf) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DOC
FrameMaker or FrameBuilder document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DOC
Microsoft Word document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DOC
WordPerfect document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DOC
WordStar document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DOG
Screen Saver file (Laughing Dog Screen Saver) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DOH
Dependency Information file (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DOS
External Command file (1st Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DOS
Network Driver file (PKT_DIS.dos) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DOS
Text file (DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DOT
Line-Type definition (CorelDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DOT
Word Document Template (Microsoft Word for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DOX
Text file (MultiMate 4.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DOX
User document binary form (Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DOZ
Description out of Zip (VENDINFO) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DP
Calendar file (Daily Planner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DP
Datafile (DataPhile) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DPL
Borland Delphi 3 packed library From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DPR
Project header (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DPT
Publication file (Publish-It!) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DR9
Directory file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DRAW
Acorn's object-based vector image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DRC
Design rules check report file (Orcad Schematic Capture) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DRS
Display Resource file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DRV
Device Driver (Required to make a device function) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DRV
Driver <http://searchStorage.techtarget.com/sDefinition/0,,sid5_gci212002,00.html> From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DRW
Lotus Freelance Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DRW
Pro/E drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DRW
Vector graphics (Micrografx) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DS4
Micrografx Designer Image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DS4
Vector Graphics (Micrografx) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSC
Discard file (Oracle) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSD
Database file (DataShaper) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSF
Micrografx Designer v7.x file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSG
DooM saved game From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSK
Driver file (Novell Netware) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSK
Project Desktop file (Borland C++/Turbo Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSM
Digital Sound Module (DSI) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSM
Dynamic Studio music module (MOD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSM
Music module file (DSIK) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSN
Design (Object System Designer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSN
ODBC Data source From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSN
Schematic file (Orcad Schematic Capture) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSP
Display parameters (Signature) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSP
Graphics Display driver (Dr. Halo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSP
Microsoft Developer Studio project From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSQ
Corel QUERY From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSR
Driver Resource (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSR
Visual Basic Active designer file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSS
Digital Sound file (Digital Soup)) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSS
Screensaver file (DCC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DST
Distribution file (PC-RDist, by Pyzzo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DST
Embroidery machines graphic file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSW
Desktop settings (Borland C++ 4.5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSW
Microsoft Developer Studio workspace file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DSX
Visual Basic Active designer binary file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DTA
Datafile (Turbo C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DTA
World Bank's STARS data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DTD
<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
- .DTED
Digital terrain elevation data (geographic data format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DTF
Database file (PFS-Questions & Answers) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DTF
Symantec Q&A relational database From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DTM
Module file (DigiTrakker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DTP
Desktop layout file (SecurDesk!/SecurDesk! LV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DTP
Template file (Pressworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DTP
Text Document (Timeworks Publisher 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DT_
Data file fork (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DUN
Microsoft Dial-up Networking Export file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DUP
Duplicate Backup From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DV
Digital video (MIME) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DVC
Datafile (Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DVF
Graphics file associated with camcorders (DV Studio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DVI
Binary file (TeX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DVI
Device Independent Document (TeX) (LaTeX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .dvi
Device-independent file. Formatted output of .tex LATEX file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DVP
Desqview Program information (DESQview) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DVP
Device parameter file (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DW2
Drawing file (DesignCAD for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DWC
Compressed Archive (DWC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DWD
DiamondWare digitized file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DWF
Drawing Web file (Microsoft WHIP autoCAD reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DWF
Vector graphic (Autodesk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DWG
AutoCAD Drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DWG
AutoCAD drawing, or older Generic CAD drawing file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DWP
Document file (DeScribe) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DWS
Workspace file (Dyadic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DX
Digital Electric Corporation (DEC) Data exchange file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DXF
Data Exchange File From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DXF
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
- .DXF
Drawing Interchange Format (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DXN
Fax document (Fujitsu dexNet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DXR
Macromedia Director protected (not editable) movie file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .DYN
Datafile (Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .E00
Coverage export file (ArcInfo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .e00
Exchange file (Arc/Info) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EBJ
Error Checking Object file (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ED5
EDMICS image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ED6
EDMICS image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EDA
Ensoniq ASR disk image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EDB
ROOTS3 Geneological data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EDD
Element Definition document (FrameMaker+SGML documents) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EDE
Ensoniq EPS disk image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EDK
Ensoniq KT disk image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EDQ
Ensoniq SQ1/SQ2/KS32 disk image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EDS
Ensoniq SQ80 disk image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EDT
Default settings (VAX Edt editor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EDV
Ensoniq VFX-SD disk image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EEB
Button Bar for Equation editor (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EFA
Ensoniq ASR file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EFE
Ensoniq EPS file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EFK
Ensoniq KT file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EFQ
Ensoniq SQ1/SQ2/KS32 file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EFS
Ensoniq SQ80 file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EFT
High Resolution Screen Font (ChiWriter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EFV
Ensoniq VFX-SD file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EFX
Fax document (Efax Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EFX
Fax Document (Everex EFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EGA
EGA Display font (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .el
Lisp program source. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EL
Lisp Source code (eMacs) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ELC
eMac Lisp Source code (byte-compiled) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ELM
Theme-Pack file for (Microsoft FrontPage) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ELT
Event List Text file (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EMB
Embedded bank File (Everest) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EMD
ABT Extended MoDule From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EMF
Enhanced Windows Metafile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EML
Microsoft Outlook Express mail message (MIME RFC 822) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EMS
Enhanced Menu System Configuration file (PC Tools) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EMU
Terminal Emulation Data file (BITCOM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ENC
Encoded file (UUENCODEd File, Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ENC
Music file (Encore) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ENC
Video file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .END
Arrow-Head Definition Table (CorelDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ENFF
Neutral Format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ENG
Chart Graphics file (EnerGraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ENG
Dictionary Engine file (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ENV
Enveloper Macro (WOPR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ENV
Environment file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EPD
Publication file (Express Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EPHTML
Enhanced Perl-parsed HTML From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EPI
Document file (Express Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EPS
Encapsulated Postscript image file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EPS
Encapsulated Postscript Vector graphics (Adobe Illustrator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EPS
Printer font (Epson, Xerox, Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EPS2
Adobe Level II Encapsulated Postscript From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EPSF
Encapsulated PostScript From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EPSI
Adobe Encapsulated Postscript Interchange From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EQN
Equation file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ER1
ERWin file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ERD
Entity Relationship Diagram graphic file (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ERM
Entity Relationship Diagram Model file (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ERR
Compilation error file (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ERR
Stores the error messages that result when the RoboHELP Help From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ERX
ERWin file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ESH
Extended Shell Batch file (DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ESL
Distributable support library file (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ESPS
ESPS audio file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ETH
Document file (Ethnograph 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ETX
Structure Enhanced text (SetText) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EUI
Ensoniq ESP family compacted disk image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EVT
Event Log (Microsoft Windows NT, 2000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EVY
Document (WordPerfect for Windows Envoy) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EWD
Text Document (Express Publisher for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EWL
Microsoft Encarta document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EX3
Device Driver file (Harvard Graphics 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EXC
Exclude file for Optimize (do not process, QEMM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EXC
Microsoft Word Exclusion Dictionary file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EXC
Source Code file (Rexx VM/CMS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EXE
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
- .EXP
Saved chat (ICQ) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EXT
ASCII binary transfer file (WS_FTP PRO) (IPSWITCH Software) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EXT2
Second extended file system (Linux) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EXT3
Third extended file system (Linux) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .EZP
Compressed file (Edify.zip) (Edify Electronic Workforce Backup Utility) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .F
Compressed file archive (FREEZE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .F
FORTRAN file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .F01
Fax document (Perfect Fax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .F06
Dos screen text font (height= 6 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .F07
Dos screen text font (height= 7 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .F08
Dos screen text font (height= 8 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .F09
Dos screen text font (height= 9 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .F10
Dos screen text font (height= 10 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .F11
Dos screen text font (height= 11 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .F12
Dos screen text font (height= 12 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .F13
Dos screen text font (height= 13 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .F14
Dos screen text font (height= 14 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .F15
Dos screen text font (height= 15 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .F16
Dos screen text font (height= 16 pixels) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .F2R
Linear music module (Farandole) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .F3R
Blocked music module (Farandole) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .F77
Source code file (FORTRAN 77) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .F90
FORTRAN file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .F96
Fax document (Frecom FAX96) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FAC
Face graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FAQ
Frequently Asked Questions document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FAR
Music module (MOD) (Farandole Composer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FAS
Basic module file (3-D Fassade Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FAV
Navigation bar (Microsoft Outlook) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FAX
<http://searchNetworking.techtarget.com/sDefinition/0,,sid7_gci212098,00.html> From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FAX
Type image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FBK
Backup (Navison Financials) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FC
Spell Check dictionary file (Harvard Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FCD
Virtual CD-ROM file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FCM
Binary file patch (Forward Compression) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FD
Declaration file (FORTRAN) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FD
Field offsets for compiler (DataFlex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FDB
Database (Navison Financials) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FDF
Forms Document (Adobe Acrobat) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FDW
Document form (F3 Design and Mapping) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FEB
Button Bar for Figure Editor (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FEM
CADRE Finite Element Mesh From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FF
Outline Font description (AGFA CompuGraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FFA
MS find fast file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FFF
Fax document (defFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FFF
GUS PnP bank file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FFL
Image file (PrintMaster Gold) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FFL
MS fast find file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FFO
MS fast find file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FFT
Final Form Text (part of IBM's DCA) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FFX
MS fast find file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FH3
Aldus Freehand 3 drawing (Vector graphic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FH4
Aldus Freehand 4 drawing (Vector graphic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FI
File Interface (FORTRAN) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FIF
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
- .FIG
REND386/AVRIL file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FIL
File List Object (dBase Application Generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FIL
File template (Application Generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FIL
Overlay (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FIN
Print formatted text (Perfect Writer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FIT
File index table (Microsoft Windows NT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FIT
Graphic (FITS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FITS
CCD camera image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FITS
Flexible Image Transport System file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FIX
Patch file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FKY
Macro (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLA
Movie (Macromedia Flash) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLB
Format library (Papyrus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLC
FLIC animation (AutoDesk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLD
Field define module file (3-D Fassade Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLD
File folder (Charisma) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLF
Delived form (Corel Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLF
Driver (OS/2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLF
License (Navison Financials) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLI
FLIC animation (AutoDesk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLI
Font library (EmTeX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLL
Distributable dynamic link library (DLL) (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLM
Film Roll (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLO
FlowCharter file (MicroGrafx) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLS
Filelist document (Farrukh Imposition Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLT
Filter (Corel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLT
Filter (Micrografx Picture Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLT
Graphics filter (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLT
Graphics filter support file (Asymetrix ToolBook) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLT
Music module (MOD) (StarTrekker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLT
Open Flight file (MulitGen) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FLX
Compiled binary file (DataFlex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FM
FrameMaker Document (Adobe) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FM
Spreadsheet (FileMaker Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FM1
Spreadsheet (Lotus 1-2-3, version 2.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FM3
Device driver (Harvard Graphics, version 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FM3
Spreadsheet (Lotus 1-2-3, version 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FMB
Binary source code for form, (Oracle, v4.x and later) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FMB
File Manager button bar (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FMF
Font or Icon (IBM LinkWay) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FMK
MakeFile (FORTRAN PowerStation) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FML
Mirror list (Oracle) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FMO
Compiled format (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FMP
Document file (FileMaker Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FMT
Csreen format file (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FMT
Print file (Microsoft Schedule+) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FMT
Style sheet (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FMT
Text format for form file (Oracle, v4.x and later) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FMX
Executable form, (Oracle,v4.x and later) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FN3
Font (Harvard Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FND
Saved Search (Find applet) (Microsoft Explorer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FNG
Font group (Font Navigator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FNK
Module (FunkTracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FNT
Font (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FNX
Inactive font (Exact) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FO1
Font (Borland Turbo C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FO2
Font (Borland Turbo C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FOG
Fontographer font From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FOL
Saved message folder (1st Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FON
Call log (Procomm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FON
Dialing directory (Telix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FON
Font (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FON
System font (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FOR
Form (WindowBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FOR
FORTRAN source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .forward
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
- .FOT
Font-related file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FOT
Installed TrueType font (Microsoft Windows Font Installer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FP
Configuration file (FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FP
FileMaker Pro file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FP1
"Flying Pigs" screensaver datafile (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FP3
FileMaker Pro v.3 & 4 document file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FP5
Document file (FileMaker Pro v.5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FPC
Catalog file (FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FPT
FileMaker Pro file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FPT
Memo fields (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FPW
Floorplan drawing (FloorPlan Plus for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FPX
Bitmap (FlashPix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FR3
Renamed dBaseIII+ form (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FRF
Font (FontMonger) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FRG
Uncompiled report (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FRK
Zip (compressed ) file (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FRM
Document (FrameMaker or FrameBuilder) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FRM
Executable file (Oracle,v3.0 and earlier) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FRM
Form (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FRM
Form (Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FRM
Merge form (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FRM
Symbol Report (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FRO
Compiled report (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FRP
Form (PerForm PRO Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FRS
Screen Font Resource (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FRT
Report menu (FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FRX
Form stash file (Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FRX
Report (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FSF
fPrint Audit Tool From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FSL
Form (Paradox for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FSL
Paradox 7 form (Borderland) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FSL
Saved form (Corel Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FSM
Sample file (Farandoyle) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FST
Linkable program (dBFast) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FSX
Data (Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FT
Full text index (Lotus Notes) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FTB
Index file (Roots3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FTF
Client access data specification file (AS/400) (Client to Server) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FTG
Help system full-text search group file (Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FTM
Font (MicroGrafx) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FTP
File transfer protocol (Internet Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FTS
Help system full-text search index (Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FTW
Document file (Family Tree Maker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FW
Database (Framework II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FW2
Database (Framework II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FW3
Database (Framework III) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FW4
Database (Framework IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FWB
Data file backup for file splitting configuration (FileWrangler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FWS
Data file for file splitting configuration (FileWrangler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FX
On-Line guide (FastLynx) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FXD
Phonebook (FAXit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FXP
Compiled source code (FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FXS
Fax Transmit graphic (WinFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FZB
Bank dump file (Casio FZ-1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FZF
Full dump file (Casio FZ-1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .FZV
Voice dump file (Casio FZ-1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .G
Data chart (APPLAUSE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .g3
G3 fax format image file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .G721
Raw CCITT G.721 //$bit ADPCM data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .G723
Raw CCITT G.723 3 or 5bit ADPCM data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .G8
Raw Graphics (one byte per pixel) Plane III (PicLab) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GAL
Album (Corel Multimedia Manager) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GAM
Fax document (GammaFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GB
Emulator ROM image file (Nintendo GameBoy) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GBC
Color emulator ROM image file (Nintendo GameBoy) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GBL
Global definitions (VAXTPU Editor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GC1
Lisp source code (Golden Common Lisp 1.1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GC3
Lisp source code (Golden Common Lisp 1.1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GCD
Generic (TM) CADD drawing (later versions) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GCP
Image processing file (Ground Control Point) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GDB
Database file (InterBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GDF
Dictionary file (GEOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GDM
Bells, whistles, and sound boards module From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GED
Genealogical data (GEDCOM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GED
Graphic Environment Document (drawing) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GED
Graphics editor file (EnerGraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GED
Graphics editor native format (Arts & Letters) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GEM
Metafile (GEM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GEM
Vector graphics (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GEN
Compiled template (dBase Application Generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GEN
Generated text (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GEO
Geode (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GetRight
Unfinished-Download (GetRight) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GFB
Compressed gif image (GIFBLAST) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GFC
Patton&Patton Flowcharting 4 flowchart From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GFI
Graphics Link presentation (Genigraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GFT
Font (NeoPaint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GFX
Genigraphics Graphics Link presentation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GIB
Chart (Graph-in-the-Box) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GID
<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
- .GIF
<http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci213984,00.html> Bitmap (CompuServe) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .gif, .giff
GIF image file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GIM
Graphics Link presentation (Genigraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GIW
Presentation (Graph-in-the-Box for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GIX
Graphics Link presentation (Genigraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GKH
Ensoniq EPS family disk image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GKS
GripKey document (Gravis) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GL
Animation file (GRASP graphical System for Presentation) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GLM
Datafile (Glim) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GLS
Datafile (Across) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GLY
Glossary (Microsoft Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GMF
CGM Graphics (APPLAUSE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GMP
Tile map (Geomorph) (SPX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GMR
Graphical monitor record (Schlafhorst Automation) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GNA
Graphics Link presentation (Genigraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GNO
Genealogy document file (Genopro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GNT
Generated executable code (Micro Focus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GNX
Graphics Link presentation (Genigraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GOC
Goc sorce code (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GOH
Goc header (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GP
Geode parameter file (Geoworks Glue) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GPH
Graph (Lotus 1-2-3/G) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GPK
Program package (Omnigo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GPP
Graph paper application file (GraphPap) (Generates graph paper) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GR2
Screen driver (Microsoft Windows 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GRA
Datafile (SigmaPlot) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GRA
Graph (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GRB
Shell Monitor (MS-DOS v5.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GRD
Image processing grid (CHIPS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GRF
Graph (Charisma Graph Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GRF
Grapher (Golden Software) graph From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GRP
Pictures group (PixBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GRP
Program Manager Group (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GRY
Raw graphic (GREY) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GS1
Presentation (GraphShow) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GSD
Vector graphic (Professional Draw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GSM
Audio stream Raw 'byte aligned (GSM 6.10 audio stream) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GSM
Audio stream Raw GSM (6.10 audio stream) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GSM
GSM w. header/QuickLink file (US Robotics voice modems) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GSM
GSM w.o. header/VoiceGuide/RapidComm file (US Robotics voice modems) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GSP
Sketch pad file (GeoMeter Sketch Pad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GSP
Zip file (Gnuzip) (Allows for output to html) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GSW
Worksheet (GraphShow) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GT2
Music module (Graoumftracker) (new) (MOD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GTK
Music module (Graoumftracker) (old) (MOD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GUP
Data (PopMail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GWP
Greetings WorkShop file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GWX
Graphics Link presentation (Genigraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GWZ
Graphics Link presentation (Genigraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GXL
Graphics library (Genus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .GZ
Compressed file (Unix gzip) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .gz
File compressed with the gzip compression program. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .h
C/C++ program header file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .H
Program header (C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .H!
On-line Help (Flambeaux Help!) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .H++
Header file (C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .H--
Header file (Sphinx C--) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HA
Compressed archive (HA) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HAM
Driver file (Novell Netware) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HAM
Vector graphics saved file (Amiga) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HAP
Compressed archive (HA) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HBK
Accounting data file (Humanic Software) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HBK
Handbook (MathCad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HCM
Configuration file (IBM HCM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HCOM
Sound Tools file (HCOM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HCR
Production configuration file (IBM HCD/HCM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HDF
Help file (Help development kit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HDF
National Center for Supercomputing Applications (NCSA) Geospatial Hierarchical Data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HDL
Alternate download listing (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HDR
Database header (Pc-File+) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HDR
Datafile (Egret) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HDR
Message header text (1st Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HDR
Message header text (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HDW
Vector graphics (Harvard Draw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HDX
Help index (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HDX
Help index (Zortech C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HED
Document (HighEdit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HEL
Hellbender saved game (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HEX
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
- .HFI
HP font info (GEM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HGL
Drawing file (HP Graphics Language) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HH
Header file (C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HH
Help system map (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HHH
Precompiled header (Power C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HHP
Help information for remote users (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HIT
Audio file (HitPlayer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HLB
Help library (VAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HLP
Help file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HLP
Windows Help file (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HMI
Human machine interfaces MIDI music file (Descent) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HMM
Alternate mail read option menu (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HMP
Human machine interfaces MIDI music file (Descent) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HNC
Program files (CNC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HOG
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
- .HOG
Main data package file (Descent3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HOG
Mission file (Descent 1-2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HOT
Document file (HotSend) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HP8
Ascii text Roman8 character set (NewWave Write) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HPC
Font language file (Hewlett-Packard) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HPF
HP LaserJet font (Adobe Pagemaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HPF
Partial download file (HotLine) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HPG
HPGL Plotter vector graphics (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HPG
HPGL Plotter vector graphics (Harvard Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HPI
Font information (GEM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HPJ
Help Project file (Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HPK
Compressed archive (HPACK) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HPM
Alternative menu for privileged users (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HPM
Emm text (HP NewWave) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HPP
Header file (Zortech C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HPP
Program header (C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HQX
BinHex (Macintosh 4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HRF
Rastor graphic (Hitachi) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HRM
Alternate menu for limited users (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HS2
Monochrome image (Postering) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HSC
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
- .HSI
Graphic (Handmade Software, Inc.) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HST
History file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HST
History file (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HT
HyperTerminal file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HTA
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
- .HTM
A Web page (a file containing Hypertext Markup Language - HTML - markup) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .htm, .html, .shtm, .html
Hypertext Markup Language. A web page of some sort. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .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
- .HTT
Hypertext template (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HTX
Template (Extended HTML) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HWD
Presentation (Hollywood) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HWP
Korean word processor document format (HanGul) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HXM
Alternate protocal selection menu (ProComm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HXM
HAM extension (Descent2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HXX
Header file (C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HY1
Hyphenation algorythm (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HY2
Hyphenation algorythm (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HYC
Datafile (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HYD
Hyphenation dictionary (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HYM
3D Image binary file (Hymarc Scandata Scanner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .HYP
Compressed archive (HYPER) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .I
Intermediate file (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .i
SWIG source, or C preprocessor output. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IAN
Text file (Sterling Software) (Groundworks COOL Business Team Model) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IAX
Bitmap (IBM Image Acess eXecutive) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IBM
Compressed archive (ARCHDOS, IBM Internal only) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ICA
Bitmap graphic (Image Object Content Architecture) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ICA
Citrix file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ICB
Targa bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ICC
Catalog file (IronClad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ICC
Printer file (Kodak) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ICD
Drawing file (IronClad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ICL
Icon Library (Generic industry standard) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ICM
Image Color Matching profile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ICN
Icon source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ICO
Icon (Microsoft Windows 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ICS
Scene file (IronClad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ID
Disk identification file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IDB
Intermediate file (Microsoft Developer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IDD
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
- .IDE
Project file (Borland C++ v4.5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IDF
MIDI Instrument Definition (Windows 95 required file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IDIF
Identification file (Netscape saved address book) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IDQ
Data Query (Internet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IDW
Vector graphic (IntelliDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IDX
Index file (Microsoft Clip Gallery v. 1.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IDX
Index file (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IDX
Microsoft Outlook Express file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IDX
Relational database index (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IDX
Relational database index (Symantec Q&A) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IFD
Form (JetForm Design) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IFF
Image (Sun TAAC/SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IFF
Interchange file, (general purpose data storage format)) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IFO
Digital Video Disk (DVD) datafile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IFO
Graphic object layer data (ImageForge Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IFP
Script file (KnowledgeMan) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IFS
Compressed fractal image (Yuvpak) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IFS
Create executable library (ImageForge/ImageForge Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IFS
System file (OS/2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IGES
Initial Graphics Exchange Specification (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IGF
Metafile (Inset Systems) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IIF
Interchange file (QuickBooks for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IIM
Music module From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ILB
Datafile (Scream Tracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ILBM
Bitmap (graphic image) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ILK
Program outline (Microsoft ILink incremental linker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IM8
Raster graphic (Sun Microsystems) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IMA
Image (WinImage) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IMA
Vector graphic (EGO,Chart) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IMF
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
- .IMG
Bitmap graphic (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IMG
Image (GEM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IMP
Spreadsheet (Lotus Improv) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IMQ
Image presentation (ImageQ) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IMS
Create executable library data (IconForge) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .in
configure input file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IN$
Installation file (HP NewWave) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IN3
Input device driver (Harvard Graphics v3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INB
Test script (Vermont High Test) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .inbound
internet email message (Microsoft Exchange Server v 5.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INC
Include file (Assembler language or Active Server) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IND
Index (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IND
Shared Database file (Specifically in Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .Individual
Software MultiModule screensaver From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INF
Information file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INF
Install script (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INF
Type I LaserJet font information file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .info
Info pages read with the info command. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INI
Bank setup file (Gravis UltraSound) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INI
Initialization file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INI
Setup file (MWave DSP synth's mwsynth.ini GM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INK
Pantone reference fills file (CorelDRAW) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INL
Inline function file (Microsoft Visual C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INP
Source code for form, (Oracle,version 3.0 and earlier) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INRS
INRS-Telecommunications audio From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INS
Datafile (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INS
Install script (InstallShield) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INS
Installation script (1st Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INS
Instrument file (Ensoniq EPS Family) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INS
Instrument music file (Adlib) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INS
Sample (Cell/II MAC/PC instruments) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INS
Sign-up file (X-Internet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INT
Interfaced units (Borland) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INT
Intermediate executable code (Produced when a source program is syntax-checked) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .INX
Index file (Foxbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IO
Compressed archive (CPIO) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IOB
3D graphics database (TDDD format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IOC
Organizational chart (Instant ORGcharting!) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IOF
Findit document (Microsoft Findit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ION
File description (4dos descript.ion) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IPL
Pantone Spot reference pallette (CorelDRAW) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IPS
International patching system binary patch file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IQY
Internet inquiry (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IRS
Resource file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ISD
Spell checker dictionary (RapidFile) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ISH
Compressed archive (ISH) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ISO
<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
ISO (International Standards Organization table, aka: ISO) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ISP
Sign-up file(X-Internet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IST
Instrument file (Digitaltracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ISU
Uninstall script (InstallShield) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IT
Music module (MOD) (Impulse Tracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IT
Settings file (intalk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ITF
Interface file (JPI Pascal TopSpeed) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ITI
Instrument file (Impulse Tracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ITS
Internet document set (possibly a Microsoft file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ITS
Sample file (Impulse Tracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IV
Open Inventor file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IVD
Microdata dimension or variable-level file (Beyond 20/20) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IVP
User subset profile (Beyond 20/20) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IVT
Table or aggregate data (Beyond 20/20) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IVX
Microdata directory (Beyond 20/20) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IW
Presentation flowchart (IconAuthor-HSC Interactive) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IW
Screensaver (Idlewild) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IWA
Text file (IBM Writing Assistant) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IWC
Install Watch document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IWM
Start file (IconAuthor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IWP
Text file (Wang) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .IZT
Binary token file (IZT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .J62
Ricoh camera file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JAR
Java ARchive (a compressed file for applets and related files) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JAS
Graphic (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JAVA
Source code (Java) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JBD
Datafile (SigmaScan) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JBF
Image browser file (Paint Shop Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JBX
Project file (Project Scheduler 4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JFF
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
- .JFIF
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
- .JIF
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
- .JMP
Discovery chart-to-statistics (SAS JMP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JN1
Jill of the Jungle data (Epic MegaGames) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JNB
Workbook file (Sigma Plot 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JOB
Vector graphics file created by conversion of a IMG file (QuestVision) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JOR
Journal (Microsoft SQL Server) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JOU
Journal backup (VAX Edt editor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JPC
Graphic (Japan PIC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JPE
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> From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JPEG
compressed bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JPG
JPEG bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .jpg, .jpeg
JPEG image file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JS
JavaScript source code From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JSD
Jet Suite document (eFAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JSP
A HTML page containing a reference to a Java servlet From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JTF
Bitmap graphic (JPEG Tagged Interchange Format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JTF
Fax document (Hayes JT Fax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JTF
JPEG bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JTK
Java ToolKit file (Sun Microsystems) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JW
Text document (JustWrite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JWL
Library (JustWrite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .JZZ
Spreadsheet (Jazz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .K25
Sample file (Kurzweil 2500) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KAR
MIDI file (text+MIDI) (Karaoke) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KB
Keyboard script (Borland C++ 4.5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KB
Program source code (Knowledge Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KBD
Keyboard mapping script (Procomm Plus, LocoScript, Signature) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KBM
Keyboard mapping script (Reflection 4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KCL
Lisp source code (Kyoto Common Lisp) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KDC
Image (Kodak Photo-Enhancer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KEX
Macro (KEDIT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KEY
Datafile (Forecast Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KEY
Icon toolbar (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KEY
Keyboard Macro From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KEY
Security file (Such as a software registration number) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KFX
Image (KoFax Group 4) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KIZ
Digital postcard (Kodak) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KKW
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
- .KMP
KeyMaP (Korg Trinity) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KPP
Toolpad (SmartPad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KPS
Bitmap graphic (IBM KIPS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KQP
Native Camera file (Konica) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KR1
Sample (multi-floppy) file (Kurzweil 2000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KRZ
Sample file (Kurzweil 2000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KSF
Sample File (Korg Trinity) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KYB
Keyboard mapping (FTP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .KYE
Game data (Kye) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .L
Linker directive file (WATCOM wlink) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .L
Source code (Lex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .L
Source code (Lisp) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LAB
Datafile (NCSS-SOLO) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LAB
Label file (Visual dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LAB
Mailing labels (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LAN
Loadable module (LAN DLL) (NetWare) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LAY
Clipart file (Printmaster Gold) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LAY
Word Chart layout (APPLAUSE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LBG
Label generator data (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LBL
Label (Clipper 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LBL
Label (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LBL
Label (dBFast) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LBM
Bitmap (DeluxePaint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LBM
Linear Bitmap graphics (XLib) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LBO
Compiled label (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LBR
Compressed archive (LU) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LBR
Display driver (Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LBT
Labels (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LBX
Labels (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LCF
Linker control file (Norton Guides compiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LCH
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
- .LCK
Lockfile (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LCL
Datafile (FTP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LCN
Lection document (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LCS
Data History file (ACT!) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LCW
Spreadsheet (Lucid 3-D) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LD
Long distance area codes file (Telix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LD1
Overlay file (dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LDB
Lock file (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LDF
Library definition file (Geoworks Glue) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LDIF
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
- .LDL
Library (Corel Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LEG
Legacy document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LES
System game profiles (same as REG file) (Logitec Entertainment) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LEV
Level file (NetHack 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LEX
Dictionary file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LFD
Data resource file (LucasArts Dark Forces) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LFP
LaserForms Plus file (Evergreen) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LFT
Laser printer font (ChiWriter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LFT
Loft file (3-D Studios) (DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LG
Logo procedure definition (LSRHS Logo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LGC
Application log file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LGD
Application log file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LGO
Header and footer logo (SuperFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LGO
Logo file (PaintBrush) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LGO
Startup logo (Microsoft Windows 3.x-9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LHA
Alternate file suffix for LZH From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LHA
Compressed Archive (LHA/LHARC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LHW
Compressed Amiga archive (LHWARP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LIB
Library file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LIF
Compressed archive (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LIF
Logical Interchange data (Hewlett-Packard) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LIM
Compressed archive (LIMIT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LIN
Interactive music sequencing data file (Electronic Arts) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LIN
Line type file (DataCad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LIS
Listing (VAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LIS
Output file produced by a Structured Query Reporting (SQR) program From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LIX
Logos library system file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .lj
LaserJet file. Suitable input to a HP LaserJet printer. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LJ
Text file (Hewlett-Packard LaseJet II printer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LK
Database file (OpenSight-16 bit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LKO
Linked object (Microsoft Outlook Express Junkmail file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LL3
Document file (LapLink III) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LLX
Exchange agent (Laplink) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LNK
Datafile (Revelation) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LNK
Linker response file (RTLink) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LNK
Shortcut file (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LOD
Load file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LOG
Log file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .log
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
- .LOK
Compressed file (FileWrangler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LP
A document reader used for downloading mortgage closing information (DesertDocs) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LPC
Printer driver (TEKO) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LPD
Helix Nuts and Bolts file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LPI
Information file for laser printers (common with some scanning sofware) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LRC
Video phone file (Intel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LRF
Linker response file (Microsoft C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LRS
Language resource file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LSF
Logos library system file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LSL
Saved library (Corel Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LSL
Script library (Lotus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .lsm
LINUX Software Map entry. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LSP
AutoLISP, CommonLISP, and other LISP language files From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LSS
Spreadsheet (Legato) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LST
Keyboard macro (1st Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LST
List file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LST
Spool file (Oracle) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LTM
Form (Lotus Forms) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LU
Library unit file (ThoughtWing) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LVL
Miner Descent/D2 Level extension (Parallax Software) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LWD
Text document (LotusWorks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LWF
Wavelet graphics file (Luratech) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LWLO
Layered Object file (Lightwave) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LWOB
Object file (Lightwave) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LWP
Wordpro 96/97 file (Lotus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LWSC
Scene file (Lightwave) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LWZ
Linguistically enhanced sound file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LYR
Layer file (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .lyx
LyX word processor document. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LZD
Difference file for binaries (Ldiff 1.20) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LZH
Compressed archive (LH ARC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LZS
Compressed archive (LARC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LZS
Data file (Skyroads) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LZW
Compressed Amiga archive (LHWARP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .LZX
Compressed archive (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .M
Macro module (Brief) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .M
Program file (Matlab) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .M
Standard package (Mathematica) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .M11
Text file (MASS11) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .M1V
MPEG-related file (MIME type 'mpeg') From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .M3
source code file (Modula 3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .M3D
3D animation (Corel Motion) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .M3U
MPEG URL (MIME audio file) (MP3 Playlist) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .M4
M4 Preprocessor file (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MA3
Macro (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAC
Image (MacPaint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAC
Macro (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAD
Module (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAF
Form (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAG
A graphics format found in some Japanese files From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAG
MAG graphics format created by Woody Lynn (MPS Magro Paint System) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAGIC
Configuration file (Magic Mail Monitor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAI
Mail (VAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAK
Makefile (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAK
Project (Visual Basic or Microsoft C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAM
Macro (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAN
Command module (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .man
Man page. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAN
Manual page output (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAP
Color pallette (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAP
Format data (Micrografx Picture Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAP
Linker map file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAP
Map file (Atlas MapMaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAP
Map file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAP
Map file used for color choices (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAP
Network map (AccView) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAP
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
- .MAQ
Query (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAR
Assembly program (VAX Macro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAR
Report (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAS
Graphics file (Lotus Freelance Smartmaster) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAT
Binary file (Matlab) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAT
Table (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAUD
Sample format (Maud) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAX
3D scene (Kinetix 3D Studio Max) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAX
Document (Paperport) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAX
Layout file (OrCad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAX
Source code (MAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAZ
A format use by Division's dVS/dVISE From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MAZ
Maze data file (Hover) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MB
Memo field values for database (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MB1
Data file (Apogee Monster Bash) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MBK
Multiple index archive (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MBOX
Mailbox file (Berkeley Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MBX
Extension Microsoft Outlook adds to saved email, Eudora mailboxes From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MCC
Calling card (Dialer10) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MCC
Configuration file (MathCad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MCD
Document (MathCad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MCF
Font file (MathCad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MCF
Magic control file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MCI
Command script (Media Control Interface) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MCP
Application script (Capsule) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MCP
Printer driver (MathCad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MCP
Project file (Metrowerks CodeWarrior) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MCR
Keyboard macro file (DataCad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MCW
Document (Microsoft Word for Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MCW
Text document (MacWrite II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MD
Compressed archive (MDCD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MDA
Add-in file (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MDA
Workgroup (Microsoft Access version 2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MDB
Database (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MDE
MDE file (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MDL
Model (3D Design Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MDL
Model file (Quake) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MDL
Model file element (Rational Rose) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MDL
Music module (MOD) (Digital Trakker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MDL
Spreadsheet (CA-Compete!) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MDM
Modem definition (Telix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MDN
Blank database template (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MDT
Add-in file (Data) (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MDT
Data table (Microsoft ILink incremental linker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MDW
Workgroup (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MDX
Multiple index file (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MDZ
Wizard template (Microsoft Access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ME
ASCII text document (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MEB
Macro editor bottom overflow library (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MED
Macro editor delete save file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MED
Music module (MOD) (OctaMed Music Editor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MEM
Macro editor macro (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MEM
Memory variable save file (Clipper) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MEM
Memory variable save file (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MEM
Memory variable save file (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MEQ
Macro editor print queue file (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MER
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
- .MER
Macro editor resident area (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MES
Macro editor workspace file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MES
Message file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MET
Document file (OmniPage Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MET
Macro editor top overflow file (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MET
Presentation Manager metafile From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MEU
Menu group (DOS Shell) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MEX
Executable command (Matlab) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MEX
Macro editor expound file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .mf
Meta-Font font program source file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MF
Metafont text file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MFG
Manufacturing file (Pro/ENGINEER) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MGF
A file in a Materials and Geometry Format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MGF
Font file (MicroGrafx) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MHT
MHTML document (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MHTM
MHTML document (MIME) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MHTML
MHTML document (MIME) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MI
Data file (Cocreate ME10) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MI
Miscellaneous file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MIC
Image Composer file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MID
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
- .MIF
Interchange format (Adobe FramMaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MIFF
Machine Independent File (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MII
Datafile (MicroStat-II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MIM
<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
- .MIME
<http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci212576,00.html> From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MIX
Object file (Power C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MIX
Package file (Command & Conquer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MIX
Picture file (Microsoft PhotoDraw 2000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MIX
Picture file (Microsoft Picture-It!) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MIX
Resource archive (Westwood Studios) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MJF
Audio file similar to MP3 (Mjuice) (Opens with WinAmp) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MK
Makefile (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MKE
Makefile (Microsoft Windows SDK) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MKI
Graphic Image (MagView 5.0) (Japanese) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MKS
Datafile (TACT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ML3
Project file (Milestones 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MLB
Macro library (Symphony) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MLI
A file in 3D Studio's Material-Library format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MLID
Muliple link interface driver file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MLM
Groupwise email file (Novell Groupwise) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MM
Text file (MultiMate Advantage II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MMC
Catalog file (Microsoft Clip Gallery 5.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MME
<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
- .MMF
Mail file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MMF
Mail message file (Microsoft Mail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MMF
Meal Master Format, a recipe catologing format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MMG
Beyond 20/20 table or aggregate data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MML
Bulk mail file (Created by MyMailList) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MMM
Multimedia movie (MacroMind Director 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MMM
Multimedia movie (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MMO
Memo Writer file (RapidFile) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MMP
MindManager file (MindMapor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MMP
Output video (Bravado) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MN2
Mission file (Descent2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MN3
Mission file (Descent3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MND
Menu source (AutoCAD Menu Compiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MND,
MNI Mandelbrot for Windows From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MNG
Map (DeLorme Map'n'Go) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MNG
Multi-image Network Graphics From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MNT
Menu file (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MNU
Advanced macro (HP NewWave) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MNU
Interact menu (Intertal Systems) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MNU
Menu (AutoCAD Menu Compiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MNU
Menu (Norton Commander) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MNU
Menu file (Visual dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MNX
Compiled menu (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MNX
Menu (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MNY
Account book (Microsoft Money) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MOB
Device definition (PEN for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MOD
Amiga/PC tracker module From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MOD
FastTracker, StarTrekker, Noise Tracker (etc.) music module file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MOD
Kernel module (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MOD
Modula-2 source code file (Clarion Modula-2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MOD
Spreadsheet (Microsoft Multiplan) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MON
Monitor description (ReadMail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MOV
Movie (AutoCAD/AutoFlix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MOV
Movie (QuickTime for Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MOZ
Zipped (Compressed) mod file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MP2
MPEG Audio Layer 2 file (MIME video file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MP2
MPEG Audio Layer 2 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MP3
MPEG Audio Layer 3 (AC3) file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MP3
MPEG Audio Layer 3 (AC3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MPA
MPEG-related file (MIME type 'mpeg') From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MPC
Calendar file (Microsoft Project) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MPD
Database file (Microsoft Project) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MPE
MPEG animation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MPEG
<http://WhatIs.techtarget.com/definition/0,,sid9_gci212601,00.html> 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
- .MPG
MPEG animation From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MPM
Mathplan Macro library (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MPP
Drawing file (CAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MPP
Project file (Microsoft Project) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MPR
Menus (compiled) (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MPT
Bitmap graphics (Multipage TIFF) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MPV
View file (Microsoft Project) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MPX
Compiled menu program (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MPX
Exchange file (Microsoft Project) used for exporting data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MRB
Multiple resolution bitmap graphics (Microsoft C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MRI
MRI Scan From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MRS
Macro resource file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MSA
Archive (Magic Shadow) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MSC
Common console document (Microsoft Windows 2000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MSC
Makefile (Microsoft C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MSD
Diagnostics report file (Microsoft MSD) (Diagnostics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MSDL
Scene Description Language (Manchester) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MSG
Mail message (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MSI
Installer package (Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MSN
Mission File (Descent) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MSN
Network document (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MSP
Paint bitmap (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MSP
Windows Installer patch file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MSS
Manuscript text file (Jove) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MSS
Manuscript text file (MINCE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MSS
Manuscript text file (Perfect Writer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MSS
Manuscript text file (Scribble) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MST
Minispecification file (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MST
Setup script (Microsoft SDK) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MST
Windows Installer transform From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MSW
Text file (Microsoft Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MSX
Compressed CP/M archive (MSX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MTH
Math file (Derive) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MTM
Music module (MOD) (Multitracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MTW
Datafile (Minitab) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MTX
Twain device driver (32 bit)(UMax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MU
Menu (Quattro Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MUL
Online game called Ultima online From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MUS
Interactive music audio data file (Electronic Arts) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MUS
Music (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MUS
Music (MusicTime) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MUS10
Audio (Mus10) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MV
Server-side script file (Miva) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MVA
Video accelerator file (Matrox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MVB
Multimedia Viewer file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MVC
Image file (Sony Digital Mavica) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MVE
Interplay video file (Descent2, Fallout2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MVF
Stop frame file (AutoCAD-AutoFlix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MVI
Movie command file (AutoCAD-AutoFlix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MVW
Log file (Saber LAN) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MWF
Animation (ProMotion) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MWP
Smartmaster file (Lotus WordPro 97) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MXD
Map file (ArcInfo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MXT
Datafile (Microsoft C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .MYP
Presentation file (Make Your Point) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .M_U
Hard Drive Boot sector backup (MazeGold) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NAN
Nanoscope files (Raw Grayscale) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NAP
Metafile (NAP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NAP
Video file (EnerGraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NB
Text file (Nota Bene) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NC
Instructions for numerical control machine (CAMS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NCB
Developer Studio file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NCC
CNC (Computer Numeric Control) file (CamView 3D) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NCD
Change directory (Norton) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NCF
Command File (Netware) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NCF
Internal clipboard (Lotus Notes) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NDB
Network database (Intellicom) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NDO
3D low-polygon modeler (Nendo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NDX
Database file (1ACT! for Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NDX
Index file (Cindex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NDX
Index file (dBase II-III-IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NEO
Raster graphics (Atari Neochrome) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NES
Emulator ROMS for game console (Nintendo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NET
Netlist output file (Orcad Schematic Capture) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NET
Network configuration file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .netCDF
Network Common Data Form From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NEW
New info From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NEZ
Emulator file used for game consoles (NES) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NFF
Neutral File Format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NFO
Info file database text From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NFO
Infobase file (Folio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NFT
Template file (Netobject Fusion) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NG
Online documentation database (Norton Guide) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NIL
Icon Library file (EasyIcons-compatible) (Norton) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NIST
Audio (NIST Sphere) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NLB
Data (Oracle 7) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NLM
Loadable Module (Netware) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NLS
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
- .NLU
E-Mail Trigger file (Norton LiveUpdate) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NLX
Form (FormWorx 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NOD
File (Netobject Fusion) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NP
Project schedule (Nokia Planner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NP
Project schedule (Visual Planner 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NPI
Source for interpreter (dBase Application Generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NRF
Data file (NICOLET) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NRG
Image file (Nero) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NS2
Database (Lotus Notes version 2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NS3
Database (Lotus Notes version 3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NS4
Database (Lotus Notes version 4) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NSF
Database (Lotus Notes) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NSO
Document file (NetObject Fusion) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NST
Music module (MOD) (Noise Tracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NT
Startup files (Microsoft Windows NT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NTF
Database template (Lotus Notes) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NTR
Executable ASCII text file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NTS
Executable ASCII text file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NTS
Tutorial (Norton) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NTX
Index file (CA-Clipper) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NUF
Message for new users (1st call) (Procomm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NWC
Song file (Noteworthy Composer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NWS
News message (MIME RFC822) (Microsoft Outlook Express) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .NXT
Sound file (NeXT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .O
Object file (Atari) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .O
Object file (GCC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .O
Object file (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .O$$
Outfile (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OAS
Word processor document (Fujitsu OAS)(Japanese) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OAZ
Fax (NetFax Manager) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OB
Object cut/paste file (IBM LinkWay) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OBD
Binder (Microsoft Office) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OBD
Binder template (Microsoft Office) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OBJ
Object file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OBR
Object browser data file (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OBS
Script (ObjectScript) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OBV
Visual interface (ObjectScript) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OBZ
Binder Wizard (Microsoft Office) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OCF
Object craft file (Object Craft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OCR
Transcribed fax-to-text file (FAXGrabber) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ODL
Type library source (Visual C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ODS
Mailbox file (Microsoft Outlook Express) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OFD
Form definition (ObjectView) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OFF
Object File (3D Mesh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OFN
FileNew file (Microsoft Office) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OFT
Template (Microsoft Outlook) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OKR
Feldeinteilung module file (3-D Fassade Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OKT
Music module (MOD) (Oktalyzer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OLB
Object Library (OLE) (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OLB
Object library (VAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OLD
Backup file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OLE
<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
- .OLE
<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
- .OLI
Text file (Olivetti) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OO1
Voice file (Typhoon) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OOGL
Object Oriented Graphics Library From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OOM
Swap file (Shroom) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OPJ
Project file (Orcad Schematic Capture) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OPL
Organiser Programming Language source file (Psion/Symbian) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OPN
Active options (Exact) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OPO
Output executable file (OPL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OPT
Developer Studio file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OPT
Optimize support file (QEMM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OPW
Organization chart (Org Plus for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OPX
Extension DLL (OPL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OPX
Inactive options (Exact) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OR2
Calendar file (Lotus Organizer 2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OR3
Lotus Organizer 97 file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ORA
Configuration file (Oracle 7) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ORA
Parameter file (Oracle) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ORC
Script (Oracle 7) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ORG
Calendar file (Lotus Organizer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OSS
Search file (Microsoft Office) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OST
Offline file (Microsoft Exchange/Outlook) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OTL
Outline font description (Z-Soft Type Foundry) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OTL
Template file (PrintMaster Gold) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OTL
Template file (Super NoteTab) (Fookes) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OTX
Text file (Olivetti Olitext Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OUT
Output file (Microsoft C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OV
Database file (Revelation-DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OV1
Overlay file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OV2
Overlay file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OVD
Datafile (ObjectVision) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OVL
Overlay file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .OVR
Overlay file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .P
Application parameter file (ReaGeniX code generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .P
Picture file (APPLAUSE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .P
Source code (Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .P10
Plot 10 drawing (Tektronics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .P16
16 Channel Music file (ProTracker 16) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .P22
Patch file (Patch 22) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .P3
Project Planner file (Primavera) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .P65
Document file (PageMaker 6.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .P7C
Digital ID file (MIME) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PA1
Worktable (PageAhead) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PAB
Personal Address Book (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PAC
Image (Stad) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PAC
Package file (Sound Blaster Studio II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PAD
Keypad definition (Telemate) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PAK
Compressed archive (PAK) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PAK
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
- .PAL
A compressed file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PAL
Color palette (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PAN
Printer specific file (CorelDRAW) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PAQ
Password encrypted zip file (Hewlett-Packard) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PAR
Parameter file (Fractint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PAR
Parts application (Digitalk PARTS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PAR
Permanent output file (Microsoft Windows 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PAS
Source code file (Borland Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PAT
exePatch utility used for Warcraft2 (WarHack) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PAT
Hatch pattern file (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PAT
Patch file (Advanced Gravis Ultrasound/Forte Technologies) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PAT
Pattern file (CorelDRAW) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .pattern
colors From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PB
Fax (FAXability Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PB
Phone book (WinFax Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PB
Setup file (PixBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PB1
Document (First Publisher for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PBA
Source code file (Powerbasic BASIC) (Genus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PBD
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
- .PBD
Phone book (FaxNOW!-Faxit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PBF
Turtle Beach Pinnacle Bank File From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PBI
Include file (PowerBasic) (Genus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PBI
Profiler binary input file (Microsoft Source Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PBK
Microsoft Phonebook From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PBL
Library file used in a development environment (PowerBuilder) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PBL
PowerBasic library (Genus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .pbm
PBM image file format. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PBM
Planar bitmap graphic (XLib) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PBM
Portable bitmap graphic From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PBO
Profiler binary output (Microsoft Source Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PBR
Resource file (PowerBuilder) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PBT
Profiler binary table (Microsoft Source Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PC
Text file (IBM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PC3
Custom palette (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PC8
Ascii text IBM8 character set (NewWave Write) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PCB
Application data file (Microsoft Powerpoint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PCC
Cutout picture vector graphics (PC Paintbrush) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PCD
Image (Kodak Photo-CD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PCD
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
- .PCE
Maps Eudora mailbox names to DOS filenames From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .pcf
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
- .PCF
Profiler command file (Microsoft Source Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PCH
Patch file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PCH
Precompiled header file (Microsoft C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PCI
PCI Miniport file (Microsoft Windows System file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PCJ
Multimedia authoring tool graphics (IBM Linkaway-Live) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PCK
Pickfile (Turbo Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PCL
<http://WhatIs.techtarget.com/definition/0,,sid9_gci214283,00.html> From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PCM
Audio file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PCM
PCM file (OKI MSM6376 Sythesizer Chip) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PCP
Live Update Pro file (Symantec) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PCS
Animation (PICS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PCS
Picture storage file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PCT
PICT drawing (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PCW
Text file (PC Write) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PCX
PC Paintbrush bitmap (ZSoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .pcx
PCX image file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PDA
Bitmap graphics From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PDB
Data file (TACT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PDB
Database file (3Com PalmPilot) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PDB
Physical model backup file (PowerDesigner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PDD
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
- .PDL
Project description language file (Borland C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PDM
Physical model file (PowerDesigner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PDP
Print Shop Deluxe file (Broderbund) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PDQ
Flowcharting PDQ Lite file (Patton&Patton) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PDS
Hardware assembly source code file (Pldasm) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PDS
Photographic image file (origin not yet identified) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PDT
Database file (ProCite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PDV
Printer driver (Paintbrush) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PDW
Document (Professional Draw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PDX
Database index file (ProCite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PE3
Image archive file (QuickViewer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PE3
Image archive file (Ulead PhotoImpact) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PE4
Image archive file (Ulead PhotoImpact v.4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PEB
Program Editor bottom overflow file (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PED
Program Editor delete save file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PEM
Program Editor macro (WordPerfect for Windows library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PEQ
Program Editor print queue file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PER
Program Editor resident area file (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PES
Program Editor work space file (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PET
Program Editor top overflow file (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PF
Encrypted file (Alladin Systems) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PFA
Type 3 font (ASCII) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PFB
Type 1 font (binary) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .pfb
X Window System font file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PFC
Personal filing cabinet file (AOL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PFC
PF Component file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PFC
Text file (First Choice) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PFF
Paraform file for 3D modeling (Scandata) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PFK
Programmable function keys (XTreePro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PFM
Printer Font Metrics (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PFS
Database text file (PFS:Write) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PFT
Printer font (ChiWriter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PG
Page cut/paste file (IBM LinkWay) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PGI
Printer graphics file device driver (PGRAPH Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PGL
Plotter drawing (Hewlett-Packard) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PGM
Portable Graymap (bitmap) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PGM
Program file (Signature) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PGN
Portable game notation file (ChessMaster and others) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PGP
PGP encrypted file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PGS
Manual page (man4dos) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PH
Optimized .goh file (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PH
Perl header file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PH
Phrase-table (Microsoft C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PH
Temporary file generated by Microsoft Help Compiler From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PHN
Phone list (QmodemPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PHN
Phone list (UltraFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PHO
Phone database (Metz Phone for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PHP
<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
PHP program source code (used for web page design). From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PHP3
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
- .PHR
Phrases (LocoScript) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PHTML
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
- .PHTML
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
- .PI1
Low resolution picture file (Dages Elite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PI2
Medium resolution picture file (Dages Elite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PI3
High resolution picture file (Dages Elite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PIC
3D Image file (SoftImage) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PIC
Bitmap (PC Paint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PIC
PICT drawing (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PIC
Picture file (Lotus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PIC
Pixar picture file (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PICT
PICT image file (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PIF
Compressed archive (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PIF
PIF drawing (IBM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PIF
Program Information File From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PIF
Vector graphics GDF file (IBM Mainframe) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PIG
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
- .PIN
Data file (Epic Pinball) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PIN
Data file (Epic Pinball) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PIX
Alias image file (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PIX
Bitmap (Inset Systems) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PJ
Project file (CA-SuperProject) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PJ
Source Integrity file (MKS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PJT
Visual FoxPro memo file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PJT
Visual Foxpro Project (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PJX
Visual FoxPro project file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PK
Packed bitmap font file (TeX DVI) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PKA
Compressed file archive (PKARC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PKG
Developer Studio application extension (similar to a DLL file) (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PKG
Installer script (NEXT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PKR
Public Keyring (PGP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PKT
Packet file (Fidonet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PL
Interleaf printerleaf (or WorldView) format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PL
Palette (Harvard Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .pl
Perl or Prolog program source code. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PL
Property list font metric file (TeX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PL
Source code file (Perl) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PL
Source code file (Prolog) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PL1
Room plan (3D Home Architect) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PL3
Chart palette (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PLB
Library file (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PLC
Add-in file (Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PLG
A format use by REND386/AVRIL From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PLI
Data description file (Oracle 7) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PLL
Pre-linked library file (Clipper 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PLM
Module (DisorderTracker2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PLN
Spreadsheet (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PLR
Pilot file (Descent 1-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PLS
MPEG PLayList file (used by WinAmp) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PLS
Sample file (DisorderTracker2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PLT
Drawing (HPGL Plotter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PLT
Palette (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PLT
Plot drawing (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PLT
Pre-linked transfer file (Clipper 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PLT
Sign-making software (Gerber Optical) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PLY
Data file (PopMail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PLY
Presentation screen (Harvard Spotlight) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PM
Bitmap graphics (Presentation Manager) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PM
Module (Perl) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PM3
Document (PageMaker 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PM4
Document (PageMaker 4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PM5
Document (PageMaker 5.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PM6
Document (PageMaker 6.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PMC
Graphics (A4TECH Scanner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PMM
Program file (Amaris BTX/2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PN3
Printer device driver (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PNG
<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
- .PNG
Bitmap file (MacroMedia FireWorks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PNG
Browser catalogue (Paint Shop Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PNM
Portable aNY Map graphics (PBM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PNT
Graphic file (MacPaint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PNT
Pen Table plotting file (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PNT
QWK reader pointer file (MarkMail 2.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PNTG
Same as PNT file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .POG
PIG file extension (Descent2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .POH
Optimized .goh file (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .POL
3D polygonal modeling file (Innovmetric) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .POL
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
- .POP
Message index (PopMail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .POP
Popup file (Visual dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .POT
PowerPoint template (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .POV
Persistence of Vision file (Ray-Tracer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .POW
Chord chart (PowerChords) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PP
Compressed Amiga archive (POWERPACKER) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PP4
Bitmap (Picture Publisher 4) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PPA
PowerPoint Add-in (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PPB
Button bar for print preview (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PPD
PostScript Printer definition file specification (Adobe Acrobat v.4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PPF
Pinnacle Program File (Turtle Beach) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PPI
Graphics file (Microsoft PowerPoint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PPL
PolaroidPalettePlus ColorKey device driver (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PPM
Portable Pixelmap bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PPO
Pre-processed output file (Clipper 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PPP
Desktop publishing default output file (Serif PagePlus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PPP
Document or finished project (Parson Power Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PPS
PowerPoint slide show (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PPS
Storyboard (Personal Producer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PPT
PowerPoint presentation (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PQB
Master boot backup file (PowerQuest BootMagic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PQI
Drive image file (PowerQuest) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PR2
Presentation (Aldus Persuasion 2.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PR2
Printer driver (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PR3
Postscript printer driver (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PR3
Presentation (Aldus Persuasion 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRC
Resource (text or program) file (3com PalmPilot) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRD
Printer driver (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRE
Presentation (Lotus Freelance) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRE
Settings (Microsoft C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRE
Settings (Programmer's WorkBench) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRF
Output file (Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRF
Pixel Run Format graphics (Improces-Fastgraph) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRF
Printer driver (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRF
Settings file (Macromedia Director) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRF
System file (Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRG
Program file (WAVmaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRG
Program source files (Atari) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRG
Program source files (dBase IV, Clipper 5, and Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRI
Printer definitions (LocoScript) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .Printer
Control Language file (printer-ready bitmap) (Hewlett-Packard) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRJ
Project file (3D Studio) (DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRM
Parameter file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRN
Print Table (space delimited text) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRN
Printer driver (Signature) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRN
Text file (Lotus 1-2-3-Symphony) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRN
Windows Printer file (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRO
Configuration file (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRO
Graphics profile file (DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRO
Project file (Terramodel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRO
Source code file (Prolog) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRP
Data conversion saved project file (Oberon Prospero) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRS
Presentation file (Harvard Graphics for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRS
Printer resource font file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRS
Procedure file (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRT
A print-formatted file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRT
Part file (CADkey) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRT
Part file (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRT
Printer driver (Dr. Halo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRV
Internet provider template file (psiMail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRX
Compiled program (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PRZ
Graphics file (Lotus Freelance 97) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PS
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
- .ps
PostScript file, for printing or viewing. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PSB
Sound Bank file (Pinnacle) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PSD
Bitmap (Adobe Photoshop) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PSE
Bitmap graphics (IBM printer Page SEgment) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PSF
Outline PostScript printer font (ChiWriter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PSI
A-law audio file (psion) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PSM
Sound data file (Epic Pinball) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PSM
Studio module (ProTracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PSM
Symbol table of IDE (Turbo Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PSP
Image file (PaintShop Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PSP
Procedure (Prodea Synergy) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PSR
Report file (PowerSoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PST
Personal Folder File (Microsoft Outlook) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PT3
Device driver (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PT3
Template (PageMaker 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PT4
Template (PageMaker 4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PTB
Script file (PubTech BatchWorks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PTB
Table file (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PTD
Table file (Pro/ENGINEER) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PTL
Petal file (ASCII version of Microsoft Visual Modeler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PTM
Macro (PubTech BatchWorks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PTM
Music module (MOD) (Polytracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PTR
QWK reader pointer file (QMail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PUB
Document (Microsoft Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PUB
Public key ring file (PGP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PUB
Publication (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PUD
Map file (WarCraftII) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PUT
Compressed archive (PUT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PVD
Script file (Instalit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PVL
Library file (Instalit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PVT
Local pointlist (Fidonet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PW
Text file (Professional Write) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PWD
Word document (Microsoft Pocket) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PWL
Password list file (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PWP
Image file (a roll of film viewed using Photoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PWP
Text document (Professional WritePlus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PWZ
PowerPoint wizard (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PX
Primary database index (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PXL
Pocket Excel spreadsheet (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PY
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
- .py
Python program source code. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PY
Saved emessages (YAHOO) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PYC
python <http://searchEnterpriseLinux.techtarget.com/sDefinition/0,,sid39_gci213538,00.html> Compiled script file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PZD
Default settings (Pizazz Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PZO
Overlay file (Pizazz Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PZP
Palette (Pizazz Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PZS
Settings (Pizazz Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PZT
Transfer file (Pizazz Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .PZX
Swap file (Pizazz Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QAD
Document (PF QuickArt) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QAG
Quick Access Group data file (Norton Desktop) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QAP
Application file (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QBE
Saved query (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QBE
Saved Query (Quattro Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QBO
Compiled query (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QBS
Program file (Microsoft QuickBasic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QBW
Spreadsheet data (QuickBooks for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QCP
Voice file (Qualcomm Pure Voice) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QD0
Data file-segment 10 (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QD1
Data file segment 1 (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QD2
Data file segment 2 (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QD3
Data file segment 3 (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QD3D
QuickDraw 3D Metafile (Apple) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QD4
Data file segment 4 (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QD5
Data file segment 5 (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QD6
Data file segment 6 (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QD7
Data file segmnet 7 (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QD8
Data file segment 8 (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QD9
Data file segment 9 (Omnis Quartz) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QDF
Data file (Quicken) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QDK
Backup of startup files (QEMM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QDT
Data file from the Quicken UK Accountancy/Tax/Invoice program (QuickBooks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QDV
Graphics file (Steve Blackstock Giffer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QEF
Query file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QEL
Electronic library file (Quicken) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QFL
Document (FAMILY LAWYER) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QFX
Fax (QuickLink) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QIC
Backup file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QIF
Image (MIME)(QuickTime) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QIF
Import file (Quicken) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QLB
Library file (Microsoft C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QLB
Library file (Quick) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QLC
Data (PostScript help file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QLP
Printer driver (QuickLink) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QM
Motion file (Quality) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QM4
Option or services file (QMail 4.x Mail Door) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QPR
Generated query program (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QPR
Print queue device driver (OS/2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QPX
Compiled query program (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QQT
Qardware definition file (Quick Qard Technology) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QRP
Report builder file (Centura) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QRP
Report file (Liberty for Windows 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QRS
Equation Editor support file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QRT
QRT graphics file (Ray Tracer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QRY
Query (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QRY
Query (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QSD
Datafile (Quicken) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QST
Tab file (Quake Spy) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QT
Movie file (QuickTime) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QTI
Image file (QuickTime) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QTIF
Image file (QuickTime) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QTM
Movie file (QuickTime) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QTP
Preferences file (QuickTime) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QTS
Image file (QuickTime) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QTS
PICT image file (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QTX
Image file (QuickTime) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QW
Write program file (Symantec Q&A) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QWK
Message file (QWK Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QXD
Data file (Quark Xpress) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QXL
Element library (Quark Xpress) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .QXT
Template file (Quark Xpress) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .R
Ratfor file (FORTRAN Preprocessor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .R
Resource file (Pegasus Mail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .R8
Raw graphics (One byte per pixel) plane one (PicLab) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .R8P
Pcl 4 bitmap font (Intellifont) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RA
Sound file (RealAudio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RAD
Radar data file (Radar ViewPoint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RAM
Metafile (RealAudio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RAO
ReadAllOver (YOUniverse) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RAR
RAR compressed archive (Eugene Roshall's format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RAS
Bitmap (Sun Raster Images) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RAT
Datafile (RATS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RAW
Raw File Format (bitmap) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RAW
Raw signed PCM data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RAW
Raw signed PCM data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RBF
Datafile (Rbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RBH
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
- .RC
Configuration file (emacs) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RC
Resource script (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RC
Resource script (Micosoft C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RCG
Newsgroup file (Netscape) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RD1
Registered level file (Descent1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RDF
Compiled UIC source code (Geoworks UI Compiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RDF
Research document information format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RDF
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
- .RDI
Device-independent bitmap file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RDL
Registered Level file (Descent) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RDX
Datafile (Reflex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .REC
Datafile (EpiInfo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .REC
Record file (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .REC
Recorded macro (Microsoft Windows 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .REC
Voice file (RapidComm) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RED
Path information file (Clarion Modula-2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .REF
Reference file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .REG
OLE registration file (Microsoft Windows 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .REG
Registration file (Corel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .REG
Registration file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .related
data files for multiple users of a small-scale PC application From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .REM
Remarks file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .REP
Reply file (QWK Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .REP
Report file (CodeReporter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .REP
Report file (DataBoss) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .REP
Report file (Report Designer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .REP
Report file (Visual dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .REQ
Request file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RES
Compiled resource file (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RES
Resource file (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RES
Resource file (Microsoft Visual C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .REV
Revision file (GeoWorks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .REX
Report definition (Oracle) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .REX
Source code file (REXX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .REZ
Resource file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RF
Raster graphics file (Sun) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RFT
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,SGI
RGB files (Silicon Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RGX
Symbol tables (ReaGeniX code generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RH
Resource header file (Borland C++ 4.5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RI
Data file (Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RIB
Graphics in Renderman format (3DReality) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RIC
Fax document (Ricoh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RIF
Image file (Metacreations Painter 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RIF
RIFF bitmap graphics (Fractal Design Painter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RIP
Graphics (remote access) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RIX
Bitmap graphics (ColorRIX VGA Paint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RL1
Regestered level file (Descent1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RL2
Registered level file (Descent2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RL4
Bitmap graphics file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RL8
Bitmap graphics file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RLA
Wavefront raster image (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RLB
Data file (Harvard Graphics Win 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RLC
Graphics file (1 bit per pixel scanner output file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RLE
Run-Length Encoded bitmap (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RLZ
Realizer source code file (CA-Realizer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RM
Video file (RealAudio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RMD
Document (Microsoft RegMaid) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RMF
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
- .RMF
Rich music format (Beatnik) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RMI
MIDI music From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RMK
Makefile (Clipper RMake) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RN
Xpl Program file (Nota Bene) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RND
Rendering slide (AutoCAD-AutoShade) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RNO
Runoff file (VAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ROL
FM music Adlib Music file (Roland) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ROM
Cartridge-based home video game emulator file (exact copy of ROM contents in cartridges from Atari 2600, Colecovision, Sega, Nintendo, etc.; not interchangeable between emulators) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ROV
Data file (Rescue Rover) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RPD
Database (RapidFire) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RPL
Text document (Replica) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RPL
Video file (Tomb Raider) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RPM
Package Manager (RedHat Linux) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .rpm
RedHat Package Manager rpm file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RPT
Crystal Reports file ( and a sub-set of Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RRS
Saved game file (Ace Road Rash) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RS
Datafile (Amiga Resource Reassembler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RSB
Red Storm bitmap (Rainbow 6 (Game) and several image editing programs) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RSC
Resource file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RSL
Paradox 7 reports (Broderland) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RSM
Resume file (WinWay Resume Writer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RSP
Response file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RS_
Resourse fork file (Macintosh Mac-ette) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RTF
<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
- .RTF
Help file script (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RTK
Used by RoboHELP to simulate the search feature of Windows help From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RTL
Run Time library (NU 7.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RTL
Text file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RTM
Music module (MOD) (Real Tracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RTP
Software update package data file (RTpatch) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RTS
RoboHELP to speed complex operations From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RTS
RTSL document (RealAudio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RTS
Runtime library file (CA-Realizer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RUL
Extension used in InstallShield From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RUN
Compiled output p-code file (Softworks basic compiler) (SoftworksLtd) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RVP
Scan Configuration file (MIME) (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RVW
Review file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RWS
Resource Workshop data file (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RWX
Script file (RenderWare) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .RXX
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
- .S
Assembler source code (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .S
Source code file (Scheme) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .S$$
Temporary sort file (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .S3I
Instrument file (Scream Tracker v 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .S3M
16 channel music file (Scream Tracker v 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SAI
Encrypted video file (Integrated Sensors) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SAL
Datafile (SORITEC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SAM
Document (AMI Professional) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SAM
Signed 8bit sample data file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SAR
Compressed archive (SAR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SAV
Backup file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SAV
Configuration file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SAV
Saved game file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SB
Raw Signed Byte (8bit) audio data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SB!
Locking file (Superbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SBD
Data definition file (Superbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SBD
Storyboard data file (Storyboard Editor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SBF
File data (Superbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SBI
Instrument file (Creative Labs SoundBlaster) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SBK
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
- .SBL
Flash object (ShockWave) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SBP
Dml program file (Superbase 4) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SBP
Program file (Superbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SBQ
Query definition file (Superbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SBR
Support file (Source Browser) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SBT
Notes related to record data (Superbase 4 for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SBV
Form definition file (Superbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SC
Display driver (Framework II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SC
Pal script (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SC2
SAS catalog (Windows 95/NT, OS/2, Mac) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SC2
Schedule+ 7.0 file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SC3
Renamed dBase III screen mask file (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SC3
Saved game file (SIMM City 3000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SC3
Screen device driver (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SC4
Level file (Roller Coaster Tycoon) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCA
Datafile (SCA) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCC
Source Safe file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCC
Text file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCD
Datafile (Microsoft Schedule+ 7.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCD
Object description language graphics (Scodl Scan Conversion) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCD
Slide image (Matrix/Imapro SCODL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCF
Command file (Microsoft Windows Explorer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCF
Multimedia show (ScoreMaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCF
Spell checker configuration file (Symphony) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCH
Datafile (Microsoft Schedule+ 7.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCH
Schematics file (ORCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCI
Fax document (SciFAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCI
Inspire native format (ScanVec) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCI
System configuration information file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCM
Scheme source code file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCM
Video game console ROM emulater file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCN
Scene data file (TrueSpace2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCN
Screen file (Kermit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCO
High score file (Generic game file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCP
Dial-Up Networking Script From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCP
Script file (BITCOM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCR
Debug source code (DOS Debug) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCR
Fax image (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCR
Screen font file (LocoScript) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCR
Screen snapshot file (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCR
Screen snapshot file (Procomm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCR
Screensaver file (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCT
CT bitmap (Scitex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCT
FoxPro forms (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCT
SAS catalog (Dos) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCT01
SAS catalog (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCV
CASmate Native format (ScanVec) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCX
Bitmap graphics (ColorRIX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCX
Chart (Stanford Chart) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCX
FoxPro forms (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCX
Screen file (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SCY
Security file (ReaGeniX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SD
Audio (Sound Designer I) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SD2
Flattened file/data fork (Sound Designer II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SD2
SAS database (Windows 95/NT OS/2, Mac) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SDA
File archive description (Fidonet Software Distribution Network) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SDC
Spreadsheet (Staroffice)(StarCalc) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SDD
Presentation file (Staroffice)(Starimpress) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SDF
System Data File Format - legacy Unisys (Sperry) format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SDI
Software distribution network information file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SDK
Floppy disk image (Roland) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SDL
Library file (SmartDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SDN
Software distribution network compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SDP
Datafile (Cocreate SolidDesigner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SDPC
Datafile (Cocreate SolidDesigner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SDR
Drawing (SmartDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SDS
Raw Midi Sample Dump Standard file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SDT
Template (SmartDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SDV
Semicolon Divided Values file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SDW
Graphic file (Lotus WordPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SDW
Raw Signed DWord (32bit) data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SDX
Midi Sample Dump Standard files compacted by SDX From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SEA
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
- .SEC
Secret key ring file (PGP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SEC
Secured animation file (Disney Animation Studio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SED
Screen editor script files (SED) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SEL
Data file (Copy Books) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SEP
Printer seperator page (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SEP
Tagged Image File Format (TIFF) bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SEQ
Animation file (Atari) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SEQ
Sequential instruction file (Bubble Chamber) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SES
Session file (Cool Edit) (common digital audio editor file ) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SES
Session information file (Clarion Modula-2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SESSION
Internet Security Scanner file (ISS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SET
Configuration file (1st Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SET
Install driver sets (Symphony) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SET
Setup option file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SET
Voice set files (Quartet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SEW
Sewing program file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SF
SoundFile format (IrCam) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SF
Wps attribute storage file (OS/2 WorkPlace Shell) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SF2
Bank file (Creative Labs Soundfont 2.0)(Soundblaster) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SF2
SoundFont file (EMU version 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SFD
Sound File Data (SoundStage) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SFI
Graphics file (SIS Framegrabber) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SFI
Printer font file (Hewlett-Packard Laser Jet Landscape) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SFI
Printer font file (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SFI
Sound File Info (SoundStage) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SFK
Sound file (Sonic Foundry) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SFL
Pcl 4 bitmap font (Intellifont) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SFL
Pcl 4 bitmap font (LandScape) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SFL
Pcl 4 bitmap font (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SFN
Font file (SPX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SFP
Pcl bitmap font (Intellifont) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SFP
Pcl bitmap font (Portrait) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SFP
Pcl bitmap font (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SFR
Sample Resource (Sonic Foundry) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SFS
Pcl 5 scalable font file (Intellifont) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SFT
Screen font (ChiWriter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SFW
Mangled JPEG (Seattle Filmworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SFX
Self-extracting archive (RAR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SG
Image file (SnapGraphix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SG1
Graphics file (Stanford Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SGF
Document w/graphics (StarWriter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SGF
Graphics file (Sonique) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SGI
Graphics file (IRIS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SGI
Graphics file (Silicon Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SGML
Standard Generalized Markup Language From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .sgml
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
- .SGP
Statistics file (STATGRAPHICS Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SGT
Save/Get keyboard macro (Signature) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SH
ASCii archive (Unix/SHAR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .sh
sh shell script. From Rute-Users-Guide It can be interpreted by any Bourne compatible shell. http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SH
Shell script (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SH3
Presentaion file (Harvard Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SHB
Document shortcut file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SHB
Presentation (Corel Show) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SHG
Bitmap (HotSpot) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SHK
Compressed Apple archive (SHRINKIT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SHK
Compressed archive (Arthurian Shrink Archiver) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SHM
Shell macro (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SHN
Audio compression file (Shorten) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SHP
DOS shapes file (3D Studios) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SHP
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
- .SHP
Shapefile spatial data format (used by many GIS programs) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SHP
Source code and shape file for text fonts (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SHR
File archive (Unix ASCii) (SHAR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SHS
Shell scrap file; reportedly used to send "password stealers" From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SHTML
HTML file containing Server Side Includes (SSI) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SHW
Presentation (Corel Show) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SHW
Presentation (Harvard Graphics 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SHW
Slide Show (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SHX
Shape entities (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SHX
Shapefile spatial index file (ArcView) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SIF
Setup installation files (Microsoft Windows NT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SIG
Current program settings (Signature) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SIG
Signature file (PopMail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SIK
Backup files (Microsoft Word for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SIK
Backup files (Sicherungskopie) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SIT
Compressed archive of Mac files (Stuffit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SIZ
Configuration file (Oracle 7) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SKA
Secret Keyring file (PGP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SKF
Drawing file (AutoSketch) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SKL
Resource file (Macromedia Director) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SL
Save Layout extension (PACT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SL
Source code file (S-Lang) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SLB
Slide Library File (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SLC
Compiled SALT script (Telix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SLD
Slide File (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SLI
Slide file (MAGICorp Slide Service) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SLK
Symbolic link spreadsheet (SLYK) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SLL
Sound data file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SLT
Script application language (SALT) (Telix script source) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SM
Maillist (SoftSpoken Mailer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SM
Script file (ScriptMaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SM
Source code file (Smalltalk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SM
Text file (Samna Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SM3
Symbol file (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SMD
Video game console ROM emulator file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SMF
Fax document (SMARTFAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SMK
Image file (Deer's Revenge) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SMK
Image file (Nascar Racing '99) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SMK
Image file (Smack Player) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SMM
Macro (AMI Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SMP
Sample file (AdLib Gold) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SMP
Samplevision format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SMS
Emulator ROM image file (8-bit Sega Master System) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SMT
SmartObject file (IconAuthor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SMT
Text file (Smart Ware II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SND
Raw unsigned PCM data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SND
Sample (AKAI MPC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SND
Sound file (NeXt) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SND
Sound resource (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SNDR
Sound file (Sounder) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SNDT
Sound file (SndTool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SNG
Midi song file (Midisoft Studio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SNG
Midi song file (Prism) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SNM
Mailbox (mail folder) index (Netscape) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SNO
Source code file (Snobol4) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SNP
Output video file (Computer Eyes) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SO
Shared library file (Unix)(equivalent to a Windows DLL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .so
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
- .SOL
Solution file (Common used with game examples,tutorials) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SOM
Network serial numbers (Quattro Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SOM
Sort information files (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SON
Song file (Creative Labs SoundBlaster Studio II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SOU
Sound file (Creative Labs SoundBlaster Studio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SP
Compressed archive for Unix (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SP4
Saved game (Roller Coaster Tycoon) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPC
Program file (Microsoft MultiPlan) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPC
Temporary file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPD
Data file (Speech) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPD
Scalable font (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPD
Scalable font (Speedo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .spd
Speedo X Window System font file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPF
Slide presentation file (EnerGraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPG
Glossary file (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPI
Graphics file (Phillips Scanner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPI
Graphics file (Siemens Scanner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPL
Compressed archive (SPLINT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPL
Customized printer driver (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPL
Object file (ShockWave Flash) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPL
Personal spell dictionary (Signature) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPL
Printer spool file (Microsoft Windows 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPL
Sample file (DigiTracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPL
Sample file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPM
Data file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPP
Printer file (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPPACK
Sound sample (SP Pack) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPR
Document letter (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPR
Generated screen program (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPR
Sprite (Image layering and resizing) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPRITE
Bitmap file (Acorn) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPS
Screen driver (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPS
Spssx source code file (VAX/VMS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPT
Source code file (Spitbol) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPT
Support file (MITAC disk/system management utility package) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPU
Picture file (Spectrum 512) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPW
Worksheet (SigmaPlot) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SPX
Compiled screen program (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SQC
Structured Query Language (SQL) common code file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SQL
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
SQL queries (Informix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SQP
Query result of audio search (Sonique) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SQR
Structured Query Language (SQL) program file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SQZ
Compressed archive (SQUEEZE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .src.rpm
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
- .SRE
Undefined file (Motorola) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SRF
Raster graphics file (Sun) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SRM
Video game console ROM emulator file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SRP
SCript file (QuickLink) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SRZ
Source file (DataFlex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SS
Bitmap graphics (Splash) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SSA
Video file (Sub Station Alpha) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SSD
Datafile (SAS/PC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SSD
SAS database (Dos) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SSD01
SAS data sets (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SSF
Spreadsheet file (Enable) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SSP
Datafile (SAS Transport) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ST
Disk Image file (Atari) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ST
Instrument library (Scream Tracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ST
Source code file (Little SmallTalk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ST
Stamp file (NeoPaint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STA
Saved state (Reflection 4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STA
Stack file (SpinMaker Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STB
Stub library (Genus GX Kernel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STD
Standard script file (LocoScript) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STD
State transition diagram graphic file (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STF
Compressed archive (SHRINKTOFIT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STL
Stereolithography file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STM
Music file (Scream Tracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STM
Music module (MOD) (Scream Tracker 2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STM
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
- .STM
State transition diagram model file (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STO
Pascal stub OBJ file (Genus GX Kernel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STQ
Text file (Statistica) (StatSoft Software) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STR
Screensaver file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STR
Structure list OBJ file (dBase IV Application Generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STS
Project status information file (Microsoft C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STS
Song file (Music) (Scream Tracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STW
Data file (SmartTerm for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STX
Electronic book file (SmarText) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STX
Tax form (CA-Simply Tax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STY
Style sheet (Generic text and graphics programs0 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .STY
Style sheet (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SUI
Suit library (Simple User Interface Toolkit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SUM
Summary file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SUN
Rasterfile graphics (Sun) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SUP
Supplementary dictionary files (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SVD
Autosave file for document (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SVF
Simple Vector Format 2D image (Microstation) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SVG
Autosave file for glossary (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SVG
Scalable vector graphics file (Adobe) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SVP
Graphics file (Sonique) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SVS
Autosave file for style sheet (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SVX
Interchange file format, 8SVX/16SV From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SVX
Sound file (Amiga 8SVX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SVY
Database file (SAVVY/PC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SW
Raw signed Word (16bit) data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SWA
Shockwave audio file in Macromedia Director (an MP3 file) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SWF
Object (ShockWave Flash) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SWG
Swag Packet file (SWAG Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SWP
Document backup file (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SWP
Swap file (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SWP
Swap file (DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SY1
Smartpix symbol library (Ami Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SY3
Symbol file (Harvard Graphics 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SYD
Backup of startup files (QEMM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SYM
Precompiled header file (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SYM
Program symbol table (Generic to compilers) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SYM
Symbol file (Harvard Graphics 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SYN
SDSC Synu image file (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SYN
Synonym file (Microsoft Word 5.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SYS
Datafile (SPSS/PC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SYS
Datafile (SYGRAPH) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SYS
Datafile (SYSTAT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SYS
System file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SYS
System file Device driver or hardware configuration file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SYW
Graphics symbols (Harvard Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .SYW
Wave file (Yamaha SV-series) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .T
Source file (TADS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .T
Tape archive (TAR) (Without compression) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .T
Tester symbol file (ReaGeniX code generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .T2T
Modeling software file (Sonata CAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .T44
Temporary file for sorting index (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .T64
Emulator tape image file (Commodore 64) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TAB
Guitar Tablature file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TAB
Table file (MapInfo GIS) 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
- .TAG
Query tag name file (DataFlex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TAH
Turbo assembler help file (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TAL
Text illustration file (TypeAlign) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TAR
<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
- .TAR
Compressed archive (TAR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .tar
tarred directory tree. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .tar.gz
See tarball. From Binh http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TAZ
Compressed ASCII archive (COMPRESS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TAZ
Compressed ASCII archive (TAR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TAZ
Gzip/Tape archive (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TB1
Font file (Borland Turbo C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TB2
Font file (Borland Turbo C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TBF
Fax document (Imavox TurboFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TBK
Interactive multimedia files (Asymetrix Toolbook) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TBK
Memo backup file (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TBK
Memo backup file (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TBK
Toolbook file (Asymetrix Toolbook) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TBL
Graphics (Native format) (Pagemaker TableEditor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TBL
Table of values (OS/2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TBS
Text elements (Microsoft Word for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TBX
Table (Project Scheduler 4) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TC
Configuration file (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TC
Configuration file (Turbo C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TCH
Turbo C Help file (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TCL
Script in the TCL/TK Language From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .tcl
Tcl/Tk source code (programming language). From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TCW
Drawing file (TurboCAD for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TD
Configuration file (Turbo Debugger for DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TD0
Disk image file (Teledisk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TD2
Configuration file (Turbo Debugger for WIN32) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TD4
Saved track design (Roller Coaster Tycoon) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TDB
Database file (TACT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TDB
Database file (Thumbs Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TDDD
A file format use by the Imagine & Turbo Silver ray-tracers From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TDF
Font file (TheDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TDF
Typeface definition file (Speedo) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TDH
Help file (Turbo Debugger0 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TDK
Keystroke recording file (Turbo Debugger) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TDS
Symbol table (Turbo Debugger) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TDW
Configuration file (Turbo Debugger for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TEF
Fax document (Relisys TEFAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TEL
Hostfile (Telnet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TEM
Input template (IconAuthor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TEM
Turbo Editor Macro Language script (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TEX
Datasheet file (Idealist) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .tex
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
TEX text file (Scientific Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TEX
Texture file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .texi, .texinfo
Texinfo source. Info pages are compiled from these. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TF
Configuration file (Turbo Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TFA
Area file (Turbo Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TFC
Catalogue file (Tobi's Floppy Disk Cataloguer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TFH
Help file (Turbo Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TFM
Form file (Form Tool Gold) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .tfm
LATEX font metric file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TFM
Tagged font metric file (TeX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TFM
TeX font metrics file (TeX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TFS
Statistics file (Turbo Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TG1
Project file (On Target) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TGA
Targa bitmap (Adobe Acrobat,TrueVision) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TGA
Targa bitmap (Countour Mortgage Loan Format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .tga
TARGA image file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TGA
Winpoint Loan file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TGQ
Movie file (Dungeon Keeper 2) (Bullfrog Software) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TGV
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
- .tgz
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
- .TGZ
Gzip/Tape archive (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .THEME
Desktop theme (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .THM
Thumbnail image file (Microsoft Clip Gallery v.1.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .THN
Thumbnail (Graphics Workshop for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .THS
Thesaurus dictionary (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TIF
Tag image bitmap file (TIFF) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TIFF
<http://WhatIs.techtarget.com/definition/0,,sid9_gci214180,00.html> From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .tiff
TIFF image file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TIG
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
- .TIL
Fuzzy Logic knowledge base file (Togai InfraLogic Fuzzy-C Compiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TIM
Texture/Image file (Playstation) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TIS
Tile set (MahJongg 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TJF
backup files (VAXTPU Editor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TLB
OLE type library files (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TLB
Reference table (Bubble Editor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TLB
Text library (VAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TLB
Type library (Visual C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TLC
Compiled tool command language source code file (Swat) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TLE
Two-Line element set (NASA) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TLP
Project timeline file (Microsoft Project) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TLX
Data file (Trellix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TMF
Tagged font metric file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TMO
Ztg global optimizer default optimizer file (Zortech C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TMP
Temporary file (Microsoft Windows) (ALL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TMS
Script file (Telemate) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TNV
Data file (BitWare) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TOC
Table of contents file (Eudora Mailbox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TOL
Image file (Kodak Photo Enhancer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TOS
Self-Extracting archive (Atari ST) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TOS
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
- .TP
Configuration file (Turbo Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TP
Sesson-state file (Turbo Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TP3
Template file (Harvard Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TP4
Saved picture file (Roller Coaster Tycoon) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TPB
Downloadable PCL Soft font file backup (HiJaak) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TPF
Downloadable PCL Soft font file (HiJaak) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TPH
Help file (Turbo Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TPL
Encrypted lesson file (TutorPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TPL
Residents units library (Turbo Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TPL
Template file ( Cakewalk Audio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TPL
Template file (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TPL
Template file (Harvard Graphics 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TPP
Project file (Teleport Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TPP
Protected mode units (Borland Pascal 7.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TPU
Command file (VAXTPU Editor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TPU
Turbo Pascal Unit (Turbo Pascal)(BGI) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TPV
Packed graphics file (TutorPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TPW
Packed wave files (TutorPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TPW
Session-state file (Turbo Profiler for Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TPW
Turbo Pascal Unit (BGI) (Turbo Pascal for Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TPX
Image file (ULead Photo Express) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TPZ
Compressed archive (GNUzip) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TPZ
Compressed archive (TAR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TR
Session-state settings (Turbo Charge Debugger for DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TR2
Session-state settings (Turbo Charge Debugger for Win32) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TRA
Saved game file (Coaster) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TRC
Debug support file (Power CTrace) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TRE
Directory tree file (PC-Tools) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TRK
Script file (Kermit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TRM
Terminal file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TRM
Terminal settings file (Microsoft Windows 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TRN
Project usage log (MKS Source Integrity) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TRN
Translation support file (Quattro Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TRS
Executable file (MicroGraphix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TRW
Session-state settings (Turbo Debugger for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TST
Printer test file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TTF
TrueType font (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ttf
Truetype font. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TTK
Translation tool kit file (Corel Catalyst) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TTO
Client access data specification file (AS/400) (Server to Client) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TUV
Tutorial file (Many programs use this suffix for their tutorials) (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TV
Table view settings (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TV1
Overflow file above insert point in document 1 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TV2
Overflow file above insert point in document 2 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TV3
Overflow file above insert point in document 3 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TV4
Overflow file above insert point in document 4 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TV5
Overflow file above insert point in document 5 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TV6
Overflow file above insert point in document 6 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TV7
Overflow file above insert point in document 7 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TV8
Overflow file above insert point in document 8 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TV9
Overflow file above insert point in document 9 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TVF
Table view settings (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TWF
Data file (TABWorks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TWW
Template file (TagWrite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TX8
MS-DOS text From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TXB
Encoded briefing file (Descent/D2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TXF
Compressed archive (FREEZE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TXF
Compressed archive (TAR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TXF
Tax exchange format (Quicken and others) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TXI
Support file (TeX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TXT
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
- .txt
Plain English text file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TXW
Wave file (Yamaha TX16W) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TYM
Time Stamp files (PageMaker 4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TZ
Old compression file (TAR), (COMPRESS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .TZB
Compressed archive (Tar) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UAP
User agent profile (Used by wireless telephony applications) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UB
Raw unsigned byte (8-bit) data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UC2
Compressed archive (UltraCompressor II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UCN
New compressed archive (UltraCompressor II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UDF
Image filter (Photostyler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UDF
Unique Database (Microsoft Windows NT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UDW
Raw unsigned doubleword (32-bit) data From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UE2
Encrypted archive (UltraCompressor II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UFO
Object file (Ulead) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UG
Drawing file (AutoCAD and others) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UHS
Binary file (Universal Hint System) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UI
Espire source code (Geoworks UI Compiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UI
User interface file (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UIF
Long prompts for Microsoft Windows (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UIH
Espire header file (Geoworks UI Compiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UL
Audio file (ULAW) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ULAW
(CCITT G.711) audio (US Telephony) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ULD
Uploaded file information (Procomm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ULT
Music module (MOD) (UltraTracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UMB
Backup file (archive) (MemMaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UNI
Datafile (Forcast Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UNI
UniMod music module (MOD) (MikMod) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UNX
Text file (Unix specific information) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UPD
Updated program data (dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UPD
Updated program data (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UPI
Program file (ULead Photo Impact) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UPO
Compiled updated datafile (dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UPX
Saved Image file (ULead Photo Express) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .URF
Universal radar format (Radar ViewPoint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .URL
Internet shortcut file (Universal Resource Locator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .USE
Source Integrity file (MKS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .USP
Printer font w/updated USACII extended character set (Pagemaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .USR
Audit trail file (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .USR
User database file (Procomm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .USR
User database file (Tour) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .USR
User database file (Turbo C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UU
Compressed ASCII archive (UUDE/ENCODE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UU
UU-encoded file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UUE
Executable compressed ASCII archive (UUDE/ENCODE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UUE
UU-encoded file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UW
Raw unsigned 16-bit) datafile (Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .UWF
Wave file (UltraTracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .V
Consistency check support file (ReaGeniX Code Generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .V
Main image input file (Vivid 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .V8
8-bit audio file (CoVox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VAL
Asset management document (Milliplex OmniValue) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VAL
Validity checks/referential integrity checks (Paradox for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VAL
Values list object file (dBase Application Generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VAN
Animation file (VistaPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VAP
Annotated speech file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VAR
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
- .VAR
Variable file (IconAuthor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VBA
VBase file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VBP
Project file (Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VBR
Remote automated registration file (Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VBS
Script file (Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VBW
Workspace file (Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VBX
Custom control file (Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VBX
Visual basic extension (Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VC
Include file with color definitions (Vivid 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VC
Spreadsheet (VisaCalc) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VCE
Unformatted voice file (Natural Microsystems) (NMS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VCE
Unformatted voice file (used by Cool Edit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VCF
Configuration file; defines objects for use with Sense8's WorldToolKit (Vevi) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VCF
Virtual card file (Many programs use this extension) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VCF
Virtual card file (Netscape) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VCT
Class library (Microsoft FoxPro) (MFC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VCW
Visual workbench information file (Microsoft Visual C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VCX
Class library (Microsoft FoxPro)(MFC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VDA
Graphics image (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VDA
Targa bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VDR
Drawing file (ComputerEasy Draw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VEL
3D drawing file (CAD( (Ashlar) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VEW
View file (Clipper 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VEW
View file (Lotus Approach) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VFL
Clip art file (PrintMaster Gold) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VFM
Voting form (Voter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VFN
Voting form for customers (VFN) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VGA
Video graphics array (Font type for display on a VGA Monitor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VGA
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
- .VGD
Visual display driver ( Generic CADD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VGR
Graphics file (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VI
Graphics file (Jovian Logic VI) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VI
Virtual Instrument file (National Instruments LABView) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VIC
Graphics file (Vicar) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VID
Bethesda video files (Terminator, Future Shock) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VID
Bitmap graphics (YUV12C M-Motion Frame Buffer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VID
Screen device driver (Microsoft Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VID
Shell monitor file (Microsoft DOS v.5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VIF
Khoros Visualisation image (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VIFF
Khoros Visualisation image (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VIK
Graphics Image (Viking) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VIR
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
- .VIS
Graphics image file (VIS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VIV
Streaming video file (VivoActive) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VIZ
dVS/dVISE file (Division) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VLB
Library file (Corel Ventura) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VLM
Drafting program file (Vellum, by Ashler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VM
Virtual memory file (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VMC
Virtual memory configuration file (Adobe Acrobat Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VMD
On-line video file (Sierra) (Torin's Passage) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VMF
Audio file (FaxWorks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VMF
Font characteristics file (Ventura Publishing) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VML
Vector markup language (used by Microsoft Office 2000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VMS
Text file with vms specific information From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VO
Include file with object definiton (Vivid 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VOB
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
- .VOC
Audio file (Creative Labs Sound Blaster) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VOC
Audio file (Quartet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .voc
Audio format (Soundblaster's own format). From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VOF
Object folder (VZ Programmer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VOX
Audio file (Talking Technology) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VOX
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
- .VOX
Formatted voice file (Natural Microsystems) (NMS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VP
Publication (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VPG
Graphics image file (VPGraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VQA
Video files (Westwood Studios) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VQE
VQ Locator file (Yamaha Sound) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VQF
VQ file (Yamaha Sound) (possible emerging standard) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VQL
VQ Locator file (Yamaha Sound) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VRF
Configuration file (Oracle 7) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VRM
Overlay file (Quattro Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VRML
A VRML file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VRP
Project file (VXRexx) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VRS
Video device driver (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VS
Include file w/surface definition (Vivid 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VSD
Drawing file (flow chart or schematic)(Shapeware Visio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VSL
Download List file (GetRight) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VSM
Simulation model (VisSim) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VSN
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
- .VSP
Data print file (Schedule Soft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VSP
Image sprite (SPX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VSS
Smartshapes image file (Shapeware Visio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VSS
Stencil file (Shapeware Visio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VST
Bitmap graphic file (TrueVison Vista) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VST
Targa bitmap (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VSW
Workspace file (Shapeware Visio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VUE
Animation file (3D Studio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VUE
View file (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VUE
View file (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VW
Text file (Volkswriter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VWP
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
- .VWP
Audio plug-in (Voxware MetaVoice Toolkit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VWR
File viewer (PC Tools) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .VXD
Virtual device driver (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .W
Word chart file (APPLAUSE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .W30
Printer font (AST TurboLaser) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .W30
Printer font (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .W31
Startup file (Microsoft Windows 3.1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .W3L
W3Launch file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .W44
Temporary file for Sort or Index (dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WAB
Outlook file (Microsoft Outlook, Outlook Express) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WAD
<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
- .WAL
Texture file (Quake 2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WAS
Script source code file (Procomm Plus Aspect) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WAV
<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
- .wav
Audio format (sound files common to Microsoft Windows). From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WAX
Compiled script file (Procomm Plus Aspect) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WB1
Notebook (QuattroPro for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WB2
Spreadsheet (QuattroPro for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WB3
Text file (QuattroPro for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WBC
Image file (Webshots) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WBF
Batch file (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WBK
Backup file (Microsoft Word for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WBL
Upload file (Argo Webload II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WBR
WordBar File (Crick Software) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WBT
Batch file (WinBatch) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WBT
Wordbar template (Crick Software) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WCD
Macro token list file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WCM
Data transmission file (Microsoft Works) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WCM
Macro (WordPerfect fdor Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WCP
Product information description file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WD2
Database file (Info Select) by (Micro Logic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WDB
Database file (Microsoft Works) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WDF
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
- .WDG
Warftpd remote daemon <http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci211888,00.html> file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WEB
Web document (Corel Zara) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WEB
Web source code file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WFB
Bank file (Maui/Rio/Monterey) (Turtle Beack WaveFront) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WFD
Audio waveform (WaveForm Manager Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WFD
Drum set (Maui/Rio/Monterey)(Turtle Beach WaveFront) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WFL
Flowchart file (Winflow) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WFM
Windows form (Virtual dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WFN
Symbol (Corel Draw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WFP
Program file (Turtle Beach WaveFront)(Maui/Rio/Monterey) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WFT
Data file (NICOLET (Old Format), see NRF) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WFX
Data file (WinFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WG1
Worksheet (Lotus 1-2-3/G) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WG2
Worksheet (Lotus 1-2-3 for O/S2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WGP
Data file (Wild Board Games) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WI
Wavelet compressed bitmap (Corel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WID
Width table (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WIF
Wavelet image file (see WI) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WIL
WinImage file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WIM
Wireless identity module (Used by wireless application protocols) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WIN
Window file (dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WIN
Window file (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WIN
Window preference file (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WIS
Script file (Reynolds & Reynolds) (Stores the results of a database query) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .with
NSREX From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WIZ
Page wizard (Microsoft Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WIZ
Wizard file (Microsoft Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WK1
Spreadsheet (Lotus 1-2-3 v. 1 and 2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WK3
Spreadsheet (Lotus 1-2-3 v. 3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WK4
Spreadsheet (Lotus 1-2-3 v. 4) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WKB
Document file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WKE
Spreadsheet (Lotus 1-2-3 Educational version) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WKQ
Spreadsheet (Quattro Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WKS
Document (Microsoft Works) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WKS
Spreadsheet (Symphony 1.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WKS
Worksheet spreadsheet (Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WKS
Workspace file (Xlisp) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WLD
REND386/AVRIL file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WLF
Upload file (Argo Upload I) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WLK
Graphics file (Virtus Walkthrough) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WLL
Add-In file (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WMA
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
- .WMC
Backup files for startup (MathCAD for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WMC
Macro file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WMC
Text file (WordMARC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WMF
Metafile (Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WN
Text file (NeXT WriteNow) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WNF
Outline font description file (CorelDRAW) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WOA
Swap file (Microsoft Windows 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WOC
Organization chart (Microsoft Windows OrgChart) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .word
processing documents From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WOW
Music module (MOD) (Grave Composer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WP
Document file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WP4
Document (WordPerfect for Windows 4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WP5
Document (WordPerfect for Windows 5.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WP6
Document (WordPerfect for Windows 6.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WPA
Word processor document (ACT!) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WPD
Demo file (WordPerfect for Windows) (ALL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WPD
Document (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WPF
Document (Enable) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WPF
Fax document (WorldPort) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WPF
Form file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WPG
Graphics file (Microsoft Word for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WPG
Microsoft Word for Windows vector graphics (DrawPerfect) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WPK
Macro (Microsoft Word for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WPM
Macro (Microsoft Word for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WPS
Text document (Microsoft Works) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WPT
Template (Microsoft Word for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WPW
PerfectWorks document (Novell) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WQ!
Compressed spreadsheet (QuattroPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WQ1
Spreadsheet (QuattroPro/DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WQ2
Spreadsheet (QuattroPro version 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WR1
Spreadsheet (Symphony 1.1-2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WR1
Symphony file (Lotus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WRD
Template (Charisma) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WRG
ReGet document From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WRI
Write document (Windows Write) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WRK
Project file (CakeWalk Music Audio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WRK
Spreadsheet (Symphony 1.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WRL
Virtual Reality model From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WRP
3D modeling file (Raindrop Geomagic) (Scandata) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WRP
Compressed Amiga archive (WARP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WRS
Resource file (Microsoft Word for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WRZ
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
- .WS
Text file (WordStar) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WS1
Document (WordStar for Windows version 1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WS2
Document (WordStar for Windows version 2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WS3
Document (WordStar for Windows version 3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WS4
Document (WordStar for Windows version 4) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WS5
Document (WordStar for Windows version 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WS6
Document (WordStar for Windows version 6) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WS7
Document (WordStar for Windows version 7) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WSD
Document (WordStar for Windows 2000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WSP
WorkSpace file (Fortran PowerStation) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WST
Document (WordStar for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WSZ
Skin (WinAmp) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WTA
Used by wireless telephony applications From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WVL
Wavelet Compressed Bitmap From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WVW
Interleaf WorldView format (a PDF format) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WWB
Button bar for document window (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WWK
Keyboard layout file (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WWL
Add-in file (Microsoft Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WXD
Music resource file (Relic Entertainment)(Home World) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .WXP
Document file (EXP for Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .X
AVS image (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .X
Source code file (Lex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .X01
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .X02
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .X03
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .X04
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .X05
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .X06
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .X07
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .X08
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .X09
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .X16
Macromedia Extra (program extension), 16 bit From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .X32
Macromedia Extra (program extension), 32 bit From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XAR
Corel Xara drawing From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XBM
A MIME 'X11" bitmap image From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XDL
XML Schema file From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XFN
Printer font file (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XFN
Printer font file (Xerox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XFT
Printer font file (24 Pin) (ChiWriter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XFX
Fax Document (Various) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XHTML
eXtensible hypertext markup language From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XI
Instrument file (FastTracker II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XI
Instrument sample file (ScreamTracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XIF
Image file (Pagis) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XIF
Image file (Xerox) (same as TIF) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XIF
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
- .XIF
Wang imaging file (Included with Windows 95) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XLA
Add-in file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XLA
Archive (Xlib) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XLB
Datafile (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XLB
Toolbar file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XLC
Chart file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XLD
Dialogue file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XLK
Backup file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XLL
Add-in file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XLL
Dynamic link library (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XLM
Macro file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XLS
Worksheet file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XLT
Template file (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XLT
Translation table (Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XLT
Translation table (Procomm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XLT
Translation table (Symphony) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XLV
VBA module (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XLW
Workbook (Microsoft Excel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XM
Music module (MOD) (Fast Tracker 2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XMI
Compressed midi music (eXtended) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XML
eXtensible markup language From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .xml
XML source file. See XML. From Binh http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XNF
Network file (Standard) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XNK
Shortcut file (Microsoft Exchange) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XON
Datafile (Axon) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XPM
X BitMap format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .xpm
XPM image file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XQT
Executable file (Waffle) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XQT
Macro file (SuperCalc) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XR1
Data file (Epic Megagames Xargon) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XRF
Cross-reference file (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XTB
External translation table (LocoScript) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XTP
Data file (Xtree) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XWD
X Window Dump format (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XWF
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
- .XWK
Keyboard mapping file (Crosstalk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XWP
Session file (Crosstalk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XWP
Text file (Xerox Writer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XX
Compressed ASCII archive (XXENCODE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XXE
Compressed ASCII archive (XXENCODE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XXX
XXXX From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XY
Text file (XYWrite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XY3
Document file (XYWrite III) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XY4
Document file (XYWrite IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XYP
Document file (XYWrite III Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .XYW
Document file (XYWrite for Windows 4.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .Y
Compressed Amiga archive (YABBA) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .Y
Grammar file (Yaac) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .y
yacc source file. From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .Y01
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .Y02
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .Y03
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .Y04
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .Y05
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .Y06
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .Y07
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .Y08
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .Y09
Secondary index file (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .YAL
Clipart library (Arts & Letters) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .YBK
Yearbook file (Microsoft Encarta) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .YUV
Graphics file (YUV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .YZ
Compressed file archive (YAC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .Z
Compressed ASCII archive (COMPRESS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .Z
File compressed with the compress compression program. From Rute-Users-Guide Can be deflated using the 'uncompress' utility. http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .Z
Unix file Compressed From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .Z3
Game module (Infocom) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ZAP
Compressed file (FileWrangler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ZAP
Software installation settings file (Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ZDG
Compressed text document (Zview) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ZER
Data file (Zerberus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ZGM
Graphics file (ZenoGraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .zip
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
Zip file Compressed archive From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ZOM
Compressed Amiga archive (ZOOM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ZOO
An early compressed file format From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .ZVD
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
- .~AP
AppExpert project database file (Borland C++ 4.5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .~DE
Project backup file (Borland C++ 4.5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .~MN
Menu backup (Norton Commander) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- .~PR
Project backup file (Terramodel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- /bin
A directory containing executable programs, primarily binary files. From I-gloss http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- /bin
A directory that contains executable programs, the majority of which are stored in binary files. Most programs are found in directories /bin and /usr/bin; however, users often keep additional programs in private bin directories, such as /home/linux/bin. From Linux Guide @FirstLinux http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- /dev/null
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
- /etc
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
- /etc/hosts
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
- /etc/hosts.equiv
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
- /etc/passwd
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
- /etc/services
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
- 0-day (zero-day)
The term 0-day exploit describes an exploit that is not publicly known. It describe tools by elite hackers who have discovered a new bug and shared it only with close friends. It also describes some new exploit for compromising popular services (the usual suspects: BIND, FTP services, Linux distros, Microsoft IIS, Solaris servers). Many 0-day exploits are discovered by the victims when hackers use them, or by honeypots. The term "0-day" describes the fact that the value of exploits quickly goes down as soon as they are announced. The next day they are half as valuable. The 2nd day they are a 1/4 as valuable. Ten days later they are 1/1000 as valuable as on day 0. This is because script-kiddies quickly use the exploits on computers throughout the Internet, compromising systems before anybody else can get to them. Contrast: The term 0-day exploit describe the hard-to-use exploits by the discoverer himself (or close friends), in contrast to the easy-to-use scripts employed by script kiddies. For example, a buffer-overflow script will go through many phases as people try to find the right offsets for the target platforms, but will eventually end up as a broad-spectrum aim-and-shoot script that anybody could use. Key point: One of the dangers of 0-day exploits is BUGTRAQ camping. A hacker discovers all the services running on the target victim and waits for day-0 when the exploit is announced. At that time, the hacker attacks the systems with the new exploit. Key point: The term "0-day" describes any bit of information in the community, whether it is serial numbers, lists of proxies, or passwords to porn sites. As soon as such information becomes well-known and exploited by large numbers of people, it is then fixed by the victim. Information has a "half-life": the older it is, the less value it has. From Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 100VG
100 Voice Grade [technology] From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 2-Disk Xwindow embedded Linux
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
- 2S2D
Double Sided - Double Density (FDD) From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 3dchess
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
- 3DDDI
3D Device Dependent Interface (MS), "3D DDI" From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 3DRAM
3 Dimensional Random Access Memory (RAM) From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 3dwm
The 3dwm project is working with the creation of a three-dimensional worspace manager that can run in the 3D Cube as well as on desktop computers. Note that wm does not stand for the term window manager. It is a bit misleading; 3dwm is not a window manager in the true sense of the word, but rather more of a gerneral user environment. The window manager functionality of the system is merely the tip of the iceberg; 3Dwm contains general primitives for building applications with three-dimensional interfaces. From 3dwm http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 3dwm-clock
A 3Dwm apps The 3Dwm clock application (tdwm-clock) is the first real application that is even remotely useful. It makes use of the 3Dwm Nobel API, including the new solid modeling support, to create a three-dimensional analog clock displaying the current time. From Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 3dwm-csgclient
A 3Dwm client A simple client which is builded using new libsolid. This is only an example on how libsolid work. From Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 3dwm-geoclient
A 3Dwm client This is a very simple 3Dwm client that connects to the exported GeometryKit in the server, creates a Geometry, loads a 3D file from the local system (in this case a simple model of an office, which also happens to be Rob's room), and passes it to the 3Dwm server. The 3Dwm server will happily render any geometry that is created, so running geoclient several times will add more geometries to the graphical output. Please note that you may need to zoom out (using the 'X' key) to see graphical output. The geoclient is able to open native .raw files as well as standard 3ds files (using MeshIO). In other words, you may experiment by loading other files than the supplied office model to the 3Dwm server. From Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 3dwm-pickclient
A 3Dwm client This is an example showing how libzorn work. From Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 3dwm-server
Binary server daemon This package contains display binary server daemon. From Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 3dwm-texclient
A 3Dwm client This is a simple client used for testing the 3Dwm texture capabilities. From Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 3dwm-vncclient
A 3Dwm client This will open a connection to the VNC server from the 3Dwm server, and the graphical output will be displayed on a single quad in the 3Dwm world (you may need to zoom out to see it). Currently, vncclient supports no interaction with the VNC window (the bindings and the actual communication code has been implemented, only the 3Dwm side is missing). From Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 3GIP
3rd Generation . Internet Protocol (org., IP, GPRS, WLAN, mobile-systems), "3G.IP" From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 3GL
3rd Generation Language From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 3GPP
Third Generation Partnerships Projects (org.) From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 4.2
/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
- 44bsd-rdist
4.4BSD rdist. This is the traditional rdist from 4.4BSD Lite with FreeBSD fixes. It is provided for compatibility with third-party rdist implementations. This is the binary package for 4.4BSD rdist. From Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 4GL
4th Generation Language From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 4GT
4 GB [RAM] Tuning (RAM, GB) From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 4Suite
The 4Suite package contains XML-related tools and libraries for Python, including 4DOM, 4XSLT, 4XPath, 4RDF, and 4XPointer. 4DOM is animplementation of the World Wide Web Consortium's (W3C) standard DOMAPI for HTML and XML content manipulation. 4DOM provides full distributed-object support based on the IDL used in the formal DOM specification. 4XSLT is an XSLT processor, which can be used to renderXML documents as customized and stylized HTML for current Web browsers. 4XSLT also provides a powerful programming API forapplications to use for low-level, customized transformations of XML documents. 4XPath is a library implementating the W3C's XPath language for indicating and selecting portions of an XML document. 4RDF is a toolkit and library for RDF processing. 4XPointer is a toolkit for processing fragment identifiers for URI references which locateresources of Internet media type text/xml. From Redhat 8.0 RPM http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 5GL
5th Generation Language From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 6tunnel
TCP proxy for non-IPv6 applications 6tunnel allows you to use services provided by IPv6 hosts with IPv4-only applications and vice versa. It can bind to any of your IPv4 or IPv6 addresses and forward all data to IPv4 or IPv6 host. It can be used for example as an IPv6-capable IRC proxy. From Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 8-character password
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
- 8.3 filename
A filename corresponding to the standard MS-DOS gleaming conventions, which restrict filenames to 8 characters and optional extensions to 3 characters. From QUECID Such restictions can prove to be an infuriating problem like when transfering files across a heterogenous network such as between Windows and Linux machines. Since older versions of Windows only support 8.3 style filenames files transferred to it will be truncated. For example, "C:\Program Files" may appear to be "C:\Progra~1" From Binh http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 802.11
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
- 80211HR
802.11 High Rate (IEEE, WLAN), "802.11/HR" From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 822-date
Command to print date and time in RFC822 format From whatis http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 8PSK
8 Phase Shift Keying (EDGE, mobile-systems) From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 8VSB
8-Vestigial Side Band, "8-VSB" From VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 9menu
Creates X menus from the shell. This is 9menu, a simple program that allows you to create X menus from the shell, where each menu item will run a command. 9menu is intended for use with 9wm, but can be used with any other window manager. From Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- 9wm
An emulation of the Plan 9 window manager 8-1/2. 9wm is an X window manager which attempts to emulate the Plan 9 window manager 8-1/2 as far as possible within the constraints imposed by X. It provides a simple yet comfortable user interface, without garish decorations or title-bars. Or icons. And it's click-to-type. From Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- [
check file types and compare values From whatis http://www.tldp.org/LDP/Linux-Dictionary/html/index.html
- ~user
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