-
$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
-
$MAIL
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