2005-05-15 16:52:12
| Revision History | |
|---|---|
| Revision 1.0 | 2005-01-29 |
| Forked from TLDP Linux Dictionary and ported commons to the project. | |
Abstract
The "Dictionary of Computer Terms" is a terminology reference containing descriptions of terms related to computing. The reference is developed and maintained as a free and open source project at http://computerdictionary.tsf.org.za/.
The primary aim of the project is to continually improve and maintain the terminology reference so that it remains as comprehensive and current possible. This is a monumental task made easier with the help of many people who contribute terms and definitions in the spirit of free and open content.
We want this work to be an easily accessible reference resource, available to anyone who cares to use it. Various presentational formats of the reference are therefore available from the project web site.
The reference is developed in Docbook XML format. The source files are therefore ideally suited as a glossary database in publishing systems based on Docbook.
Table of Contents
Table of Contents
Martin Wheeler.
Dale Rogers for participating in coverage testing.
Anthony E. Greene for writing a program to help sort the dictionary into alphabetical order.
Machtelt Garrels for writing a template program which allowed me to write a program to convert the original text file to Docbook.
Chris Karakas for general troubleshooting.
Greg Ferguson for general help in publishing this document.
Andrew Laird for participating in coverage testing.
Jason Hounam for participating in coverage testing.
Ahmed Tanvir for participating in coverage testing.
Dan Richter.
Emma Jane Hogbin.
Geoff Farrell.
Neil Eagle.
Rodolfo J. Paiz for advice in regards to maintaining this document.
Ruth A. Kramer for advice in regards to maintaining this document.
Saqib Ali for help in converting this document to various other formats.
Scott Baust.
David Horton.
Que Anh.
Pawel Kot.
As the reader of this reference or user of the source your feedback is greatly appreciated.
The Computer Dictionary project is a free and open source innitiative. This means there are many ways in which people can join and contribute to the development and maintenance of the terminology reference. For example, anyone can suggest and contribute a new computing term and its' definition for inclusion in the reference. In the same way, anyone spotting an error or 'typo' can bring it to the attention of others or even rectify it on their own.
Please send feedback, comments, suggestions and questions to the Computer Dictionary project with the subject heading of [Feedback].
The Computer Dictionary project would appreciate and consider it courteous to receive notification of any and all modifications, translations, and printed versions derived from this work that are not contributed back the Computer Dictionary project.
Expands to the full pathname used to invoke this instance of bash. [40]
Expands to the version number of this instance of bash. [40]
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''. [40]
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. [40]
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:~''. [40]
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. [40]
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. [40]
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. [40]
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. [40]
The number of commands to remember in the command history (see HISTORY below). The default value is 500. [40]
The home directory of the current user; the default argument for the cd builtin command. [40]
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. [40]
Automatically set to a string that uniquely describes the type of machine on which bash is executing. The default is system-dependent. [40]
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. [96]
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>''. [40]
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. [40]
The filename for the readline startup file, overriding the default of ~/.inputrc (see READLINE below). [40]
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. [40]
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. [40]
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. [40]
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). [40]
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. [40]
The previous working directory as set by the cd command. [40]
Automatically set to a string that describes the operating system on which bash is executing. The default is system-dependent. [40]
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:.''. [40]
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 [66]
If set, the value is executed as a command prior to issuing each primary prompt. [40]
The value of this parameter is expanded (see PROMPTING below) and used as the primary prompt string. The default value is 'bash\$ ''. [40]
The value of this parameter is expanded and used as the secondary prompt string. The default is '> ''. [40]
The value of this parameter is used as the prompt for the select command (see SHELL GRAMMAR above). [40]
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 '+ ''. [40]
The current working directory as set by the cd command. [40]
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. [40]
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. [40]
Incremented by one each time an instance of bash is started. [40]
and higher A method of numbering picture files for a roll of film that has been scanned for computer presentation [34]
Used by OS/2 to keep track of archived files [34]
native format [34]
Data file (GEOWorks) [34]
Used to number old (backup) versions of files (for example, CONFIG.SYS when changed by an installation program); also used to number [34]
Database index files used by (Superbase) [34]
Backup file (Iomega Backup) [34]
Backup data file (Iomega Backup) [34]
Lotus 123 97 file [34]
Smartmaster file (Lotus 1-2-3 '97) [34]
Documenting wizard list (Microsoft Visual FoxPro) [34]
Two-dimensional drawing file (VersaCAD) (http://www.versacad.com/vcadhome.htm) [34]
and 3GR VGA Graphics driver/configuration files (Microsoft Windows) [34]
A file for use in an 80386 or higher microprocessor [34]
Three-dimensional drawing file (VersaCAD) (http://www.versacad.com/vcadhome.htm) [34]
3D NURBS modeler, (Rhino) [34]
A file in 3D Studio (for DOS) format [34]
Data file (Used by digital cameras) [34]
Compiled code (Informix 4GL) [34]
Source code (Informix 4GL) [34]
Music file (Quartet) [34]
Music mod file (Composer 669)(Unis Composer) [34]
Tracker module (Composer 669) [34]
Source file (Assembly) (Similar to Microsoft Assembler) [34]
Screen files used in the installation and instruction on use of such applications as Microsoft Codeview for C [34]
Archive. lib*.a is a static library. [40]
Library file (Unix) [34]
Object code library [34]
Authorware 3.x library [34]
Authorware MacIntosh file (unpackaged) [34]
Authorware Windows file (unpackaged) [34]
Authorware 4.x library [34]
Authorware MacIntosh file (unpackaged) [34]
Authorware file (packaged without runtime) [34]
Authorware Windows file (unpackaged) [34]
Authorware 5.x library [34]
Authorware Windows file (unpackaged) [34]
Audible audio file (commonly used for downloadable audio books) [34]
Authorware shocked file [34]
Authorware shocked packet [34]
Applix Builder file [34]
Adobe Binary Screen Font [34]
Backup file (PrintMaster Gold) [34]
Corel Draw AutoBackup [34]
Audio album file (HitPlayer) [34]
Applix Builder Turbo file [34]
MPEG Audio Sound file [34]
Sometimes used to denote an abstract (as in an abstract or summary of a scientific paper) AutoBackup [34]
Standard GNU compiler output file for a PC platform [34]
HTTP animation file (Microsoft Agent) [34]
Project Manager Workbench file [34]
ACBM Graphic image [34]
DR-DOS Viewmax file [34]
Character definiton file (Microsoft Agent) [34]
ACE Archiver Compression <http://searchStorage.techtarget.com/sDefinition/0,,sid5_gci211828,00.html> file [34]
HTTP character file (Microsoft Agent) [34]
ACI development appraisal (ACIWEB) [34]
Corel Draw 6 keyboard accelerator file [34]
Dynamic Link Library (DLL) [34]
Interplay compressed sound file (Fallout 1,2, Baulder's Gate) [34]
Windows system directory file [34]
Microsoft Office Assistant Preview file [34]
American College of Radiology file [34]
Character structered storage file (Microsoft Agent) [34]
Action Presentation [34]
Documenting wizard action diagram (Microsoft Visual FoxPro) [34]
FoxPro Foxdoc Action Diagram [34]
Microsoft Office Assistant Actor file [34]
Used to Compress and decompress audio data [34]
After Dark screensaver [34]
<http://search390.techtarget.com/sDefinition/0,,sid10_gci211523,00.html> Ada source text file (non-GNAT) [34]
Ada source text body file (GNAT) [34]
HP 100LX Organizer Appointment database [34]
Scanstudio 16 color Bitmap Graphic file [34]
OS/2 adapter driver file used in the boot process [34]
Amiga <http://WhatIs.techtarget.com/definition/0,,sid9_gci211557,00.html> disk file [34]
AutoCAD device-independent binary plotter file [34]
QEMM Mca adaptor description library [34]
After Dark MultiModule screensaver (Microsoft) [34]
Windows NT <http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci213368,00.html> policy template [34]
Lotus 1-2-3 Add-In file [34]
Astound Dynamite file [34]
Dynamic Page file (AOLserver) [34]
FaxWorks Faxmodem setup file [34]
After Dark Randomizer screensaver [34]
Smart Address address book [34]
Ada source text specification file (GNAT) [34]
AdTech Fax file [34]
HP NewWave datafile for card applications [34]
Archetype Designer Document [34]
Dynazip Active Delivery script [34]
Lotus Approach dBase Index [34]
Packed ADF file (Extracts with WinZip) [34]
Author/Editor file (SoftQuad) [34]
ArcExplorer project file [34]
ABC FlowCharter 2.0 Flowchart [34]
ABC Flowchart [34]
Apple Sound file [34]
Truevision Bitmap graphic [34]
Adobe metrics [34]
HP NewWave Cardfile application [34]
Applix graphic [34]
Adobe Illustrator drawing [34]
Corel Trace drawing [34]
Audio Interchange File, a sound format used by Silicon Graphics and Macintosh applications [34]
Similar to AIF (compressed) [34]
<http://WhatIs.techtarget.com/definition/0,,sid9_gci213472,00.html> Similar to AIF [34]
AOL Instant Messenger Launch file [34]
AIN Compressed archive [34]
APL transfer file [34]
ACDSee Image Sequence [34]
Velvet Studio Instruments file [34]
Xerox Arry of Intensity Samples Graphic [34]
HP NewWave Cardfile Application data [34]
Contains all A-keywords in the RoboHELP Help Project Index Designer not associated with topics [34]
European Telephony audio [34]
JASC Image Commander album [34]
Document file (SAP proprietary format) [34]
Alias Image [34]
X Window System font alias catalog. [40]
Arts & Letters Library [34]
WordPerfect for Windows General printer information file [34]
Alias Image [34]
WordPerfect Library Menu [34]
Applix SHELF Macro [34]
DSMIA/Asylum module music (Crusader,No Remorse,Aladdin) [34]
Music file (Advanced Module Format) [34]
ACTOR System image [34]
AMGC Compressed archive [34]
Annotation file (Cocreate SolidDesigner) [34]
Extreme's Tracker module [34]
Velvet Studio music module (MOD) file [34]
Text file (Sterling Software) (Groundworks COOL Business Team Model) [34]
Canon Computer Pattern Maker file that is a selectable list of [34]
Microsoft Windows Animated cursor [34]
DeluxPaint Animation [34]
Windows 3.x Help annotation [34]
ANSI <http://searchCIO.techtarget.com/sDefinition/0,,sid19_gci213776,00.html> Text file [34]
SimAnt for Windows saved game [34]
Nokia 9000 Add-on software [34]
Applicatio binary object template file (ZenWorks snAPPshot) [34]
Applix Presents file [34]
WHAP Compressed Amiga archive [34]
Compiled application file (Centura Team Developer) [34]
Lotus 1-2-3 Printer driver [34]
Dynamic application library file (Centura Team Developer) [34]
Lotus 1-2-3 Printer driver [34]
Lotus 1-2-3 Printer driver [34]
Project file (Allaire) (Created by Homesite) [34]
Application Program Interface; used by Adobe Acrobat <http://searchCIO.techtarget.com/sDefinition/0,,sid19_gci211517,00.html> [34]
Lotus 1-2-3 Printer driver [34]
APL Workspace file [34]
Application library file (Centura Team Developer) [34]
dBase Application Generator Object [34]
DR-DOS Executable Application [34]
FoxPro Generated Application [34]
Generated application or active document (Microsoft Visual FoxPro) [34]
Normal mode application file (Centura Team Developer) [34]
Symphony Add-in Application [34]
ArcView project file [34]
Employee Appraiser Performance Review file [34]
Lotus Approach 97 View file [34]
Advanced patching systems with error checking, (Similar to IPS) [34]
Microsoft Visual C++ file [34]
Lotus Approach Data view file [34]
Text mode application file (Centura Team Developer) [34]
Borland C++ Appexpert database [34]
Lotus Approach Paradox-Specific information file [34]
Applix data [34]
LH ARC (old version) compressed archive [34]
SQUASH Compressed archive [34]
Automatic Response file [34]
ARI Compressed archive [34]
Aristotle audio file [34]
Robert Jung ARJ compressed archive (ARJ) [34]
ARC File Archiver CPM/Port archive [34]
AOL v4.0 organizer file [34]
Atari Cubase Arrangement [34]
AOL Image file compressed using the Johson-Grace compression algorithm [34]
Canon Crayola art [34]
Clip Art [34]
First Publisher Raster graphic [34]
Ray Tracer file [34]
Xara Studio drawing [34]
ARX Compressed Archive [34]
Applix Spreadsheet [34]
Microsoft Visual InterDev <http://searchDatabase.techtarget.com/sDefinition/0,,sid13_gci213682,00.html> file [34]
ASCII <http://WhatIs.techtarget.com/definition/0,,sid9_gci211600,00.html> text file [34]
PGP <http://searchSecurity.techtarget.com/sDefinition/0,,sid14_gci214292,00.html> armored encrypted <encrypti.htm> file [34]
Astound Presentation [34]
Lotus 1-2-3 Screen driver [34]
Microsoft Advanced Streaming Format (ASF) description file; opens [34]
WinWord AutoSave file [34]
Velvet Studio Sample file [34]
Lotus 1-2-3 Screen font [34]
Microsoft Advanced Streaming Format [34]
Music file (Electronic Arts) [34]
StratGraphics Datafile [34]
TASM 3.0 Assembly language header [34]
Borland C++/Turbo C Assembler Include file [34]
Assembler <http://search390.techtarget.com/sDefinition/0,,sid10_gci211604,00.html> Language source file [34]
Pro/E assembly file [34]
Astound Dynamite Object [34]
<http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci213787,00.html> Active Server Page (an HTML file containing a Microsoft server-processed script) [34]
Astound Presentation [34]
Procomm Plus setup and connection script [34]
Astound multimedia file [34]
Claris Works "assistant" file [34]
DataCAD Autosave file [34]
Cheyenne Backup script [34]
Microsoft Advanced Streaming Redirector file [34]
Video file [34]
Aldus Persuasion 2.0 Auto Template [34]
Adobe Type Manager data/info file [34]
AT&T Group 4 bitmap [34]
AnyTime Deluxe for Windows personal information manager file from [34]
Audio format (original Sun Microsystems generic sound file). [40]
Audio U-law (pronounced mu-law) [34]
Sun/NeXT/DEC/UNIX sound file [34]
Audio file (Westwood Studios) (Kyrandia 3,C&C,RedAlert,C&C:TS) [34]
ChiWriter Auxilliary Dictionary file [34]
TeX/LaTeX Auxilliary Reference file [34]
Avagio Publication [34]
Inculan Anti-Virus virus infected file [34]
Microsoft Audio Video Interleaved file for Windows movie [34]
Video format. [40]
Audio Visual Research file [34]
Application Visualization System file [34]
Stardent AVS-X Image [34]
File Extension (ArcView) [34]
Applix Words file [34]
HP AdvanceWrite Text file [34]
FaxView Document image [34]
awk program source file. [40]
AWK Script/Program [34]
Animation Works Movie [34]
Telsis file for digitally stored audio [34]
StatGraphics Data file [34]
ArcIMS XML project file [34]
ASCII application object template (ZenWorks snAPPshot) [34]
ARJ compressed file from a multi-volume archive (xx = a number from 01 to 99) [34]
Applause Batch list [34]
1st Reader Mono binary screen image [34]
Atari/Macintosh black and white graphic [34]
1st Reader Mono and color binary screen image [34]
ABC Ventura publisher printer font [34]
Helix Nuts and Bolts file [34]
Raw graphic file (Piclab Plane II) [34]
Oracle bad file [34]
Backup file [34]
Ballade Music score [34]
dBase Application Generator Horizontal menu object [34]
BASIC <http://searchVB.techtarget.com/sDefinition/0,,sid8_gci213805,00.html> source code [34]
Batch file <http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci211642,00.html> [34]
Papyrus Database backup [34]
TeX/BibTeX Bibliographic reference file [34]
Deluxe Paint Bitmap image [34]
Bulletin Board Sytem text [34]
Batch Process Object (dBase Application Generator) [34]
Datalex Entry Point 90 Data file [34]
Microsoft Works Communications file [34]
Bitstream Outline font description file [34]
Borland C++ Makefile [34]
Borland C++ 4.5 Environment settings file [34]
Microsoft Works Dababase file [34]
Egret Datafile [34]
West Point Bridge Designer file [34]
Microsoft Publisher Border [34]
Bitstream Outline font description [34]
Bradford 2 Font [34]
Windows 95 Briefcase Document [34]
Font Metrics file (Unix/Mainframe) [34]
Fax document file (BitFax) [34]
Microsoft Backgammon Game file [34]
OS/2 Graphic array [34]
Borland Graphics Interface Driver [34]
Microsoft Flight Simulator Scenery file [34]
pcAnywhere Host file [34]
Binary <http://WhatIs.techtarget.com/definition/0,,sid9_gci211661,00.html> file [34]
Bibliography file (ASCII) [34]
bibtex LATEX bibliography source file. [40]
Database [34]
TeX/BibTeX Literature Database [34]
GroupWise initialization file [34]
Image Capture Board Binary Image black & white graphic [34]
XLITE 3D file [34]
Binary <http://WhatIs.techtarget.com/definition/0,,sid9_gci211661,00.html> file [34]
OS/2 Bios file [34]
X11 Bitmap [34]
Backup file (Generic) [34]
JetFax Faxbook file [34]
WordPerfect for Windows Document backup [34]
Backup file (Generic) [34]
WordPerfect for Windows Timed backup file for document window 1 [34]
WordPerfect for Windows Timed backup file for document window 2 [34]
WordPerfect for Windows Timed backup file for document window 3 [34]
WordPerfect for Windows Timed backup file for document window 4 [34]
WordPerfect for Windows Timed backup file for document window 5 [34]
WordPerfect for Windows Timed backup file for document window 6 [34]
WordPerfect for Windows Timed backup file for document window 7 [34]
WordPerfect for Windows Timed backup file for document window 8 [34]
WordPerfect for Windows Timed backup file for document window 9 [34]
TurboVidion Dialog Designer Backup [34]
IBM BookManager Read bookshelf file [34]
Microsoft Works Spreadsheet Backup [34]
FontEdit Fontset mirror image [34]
Resource archive (DreamWorks),(Neverhood) [34]
BASIC Bloadable picture file [34]
Alias Wavefront Image [34]
WordPerfect for Windows Temporary file [34]
Windows system Bitmap [34]
Apogee BioMenace data [34]
Corel Gallery file [34]
Windows Help bookmark [34]
Microsoft Bitmap file image format. [40]
Windows or OS/2 bitmap [34]
Instrument bank file (AdLib) [34]
Instrument Bank file (AdLib) [34]
Sound effects bank file (Electronic Arts) [34]
Compressed archive library file (Microsoft Booasm.arc) [34]
Bill of materials file (Orcad Schematic Capture) [34]
Microsoft Booasm.arc Compressed archive [34]
Adobe FrameMaker Book [34]
Lotus Notes file [34]
Business Plan Toolkit Chart [34]
Borland Delphi 4 packed library [34]
Microsoft Works Document [34]
CorelDraw Bitmap fills file [34]
Truevision Targa Bitmap [34]
BrioQuery file [34]
Bridge Script [34]
Eagle Layout file [34]
Brooktrout Fax-Mail file [34]
Application file associated with financial institution(s) loan applications [34]
A file for browsing an index of multimedia options [34]
DbBRZ file for very large Db backup or restore [34]
Apogee Blake Stone data file [34]
BSARC Compressed archive [34]
Apple II Compressed archive [34]
Fortran Pwbrmake Object [34]
MS Developer Studio (MSDev) browser information [34]
Quake map file [34]
Microsoft Bookshelf Find Menu shell extension [34]
Batch <http://search390.techtarget.com/sDefinition/0,,sid10_gci211641,00.html> file used by Norton Utilities [34]
Database file (Btrieve 5.1) [34]
Backup disk for Quicken [34]
Bugs and Problems file [34]
CakeWalk Audio Bundle (a MIDI <http://WhatIs.techtarget.com/definition/0,,sid9_gci212572,00.html> program) [34]
Backup [34]
Buttons! Button definition [34]
Movie data file [34]
WordPerfect for Windows Overflow file below insert point in document 1 [34]
WordPerfect for Windows Overflow file below insert point in document 2 [34]
WordPerfect for Windows Overflow file below insert point in document 3 [34]
WordPerfect for Windows Overflow file below insert point in document 4 [34]
WordPerfect for Windows Overflow file below insert point in document 5 [34]
WordPerfect for Windows Overflow file below insert point in document 6 [34]
Wordperfect for Windows Overflow file below insert point in document 7 [34]
WordPerfect for Windows Overflow file below insert point in document 8 [34]
WordPerfect for Windows Overflow file below insert point in document 9 [34]
SGI Black and White image file [34]
Silicon Graphics Raw red,green and blue bytes file [34]
Visual Baler Spreadsheet application [34]
Kermit Beware buglist [34]
Business Wave file [34]
BYU Movie [34]
Bzip compressed file (Inix) [34]
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. [40]
Bzip compressed file (Unix) (replaces Bz) [34]
File compressed with the bzip2 compression program. [40]
Atari/Macintosh black and white graphic [34]
C code [34]
C program source code. [40]
Site configuration for Secure Remote (CheckPoint VPN) [34]
Sphinx C-- Source code [34]
Ventura Publisher Print file [34]
Typhoon wave [34]
Computer Innovation (C86) Source code [34]
Telnet Server Initial cache data file [34]
Microsoft cabinet file (program files compressed for software distribution) [34]
dBase IV Executable file [34]
Softdesk Drafix Cad file [34]
Catalog file (Microsoft Clip Gallery v. 2.x,3.x,4.x) [34]
Calendar schedule data file [34]
CALS Compressed Bitmap [34]
SuperCalc 4/5 Spreadsheet [34]
Casio camera file [34]
Navigator Fax [34]
Compressed music file [34]
Telix Session Capture file [34]
Ventura Publisher Caption [34]
AtHome assistant file [34]
Comma-delimited ASCII file [34]
dBase Catalogue file [34]
Quicken IntelliCharge categorization file [34]
Microsoft clean boot <http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci211696,00.html> file [34]
CubiCalc Fuzzy Logic System file [34]
Column binary file (used in IBM mainframe systems) [34]
Cobol Source code [34]
XLib Compiled Bitmap [34]
Generic Computer based training file [34]
C++ Source code [34]
Visual dBASE custom class file [34]
C++ program source code. [40]
cc:mail archive file [34]
Visual Basic Animated Button configuration file [34]
Curtain Call Native bitmap graphic [34]
Data file (Calendar Creator Plus) [34]
Multimedia Viewer configuration file used in OS/2 [34]
Symphony Communications Configuration file [34]
Corel Chart [34]
Intalk Communication Command Language [34]
Lotus CC:Mail "box" file (for example, INBOX.CCM) [34]
CyberChat data file [34]
XBTX Graphics [34]
Macromedia Director Shockwave cast file [34]
CD Audio Track [34]
CardScan Database (CardScan) [34]
Clipboard file [34]
Conceptual model backup file (PowerDesigner) [34]
TCU Turbo C Utilities Main database [34]
<http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci213841,00.html> Microsoft Channel Definition Format [34]
Netcdf Graphic file [34]
Compact Disk filing system (WindRiver) [34]
Phillips Compact Disk Interactive file [34]
Atari Calamus Document [34]
Conceptual data model file (PowerDesigner Data Architect) (Sybase) [34]
Conceptual model file (PowerDesigner) [34]
Visual dBASE custom data module [34]
Corel Draw Vector drawing file [34]
Raw Audio-CD data file [34]
Corel Draw template [34]
CorelDraw Data file [34]
Corel Draw compressed drawing [34]
Microsoft's Visual Foxpro <http://searchDatabase.techtarget.com/sDefinition/0,,sid13_gci213705,00.html> index [34]
The FarSide Computer Calendar Main CE file [34]
Tempra Show Bitmap graphic [34]
AutoDesk Animator Cel Image [34]
CIMFast Event Language file [34]
Certificate file (MIME x-x509-ca-cert) [34]
Imake Configurtion file [34]
Configuration file or script. [40]
Comptons Multimedia file [34]
Configuration file [34]
CorelFLOW Chart [34]
ColdFusion <http://searchDatabase.techtarget.com/sDefinition/0,,sid13_gci211812,00.html> template [34]
Corel FontMaster file [34]
Creative FM-Music [34]
Visual dBASE Windows customer form [34]
Atari Calamus Font data file [34]
TCU Turbo C Utilities C form object [34]
The Complete Fax Portable fax file [34]
Ventura Publisher Display font file [34]
<http://searchDatabase.techtarget.com/sDefinition/0,,sid13_gci213846,00.html> Common gateway interface script [34]
Executable script that produces web page output. [40]
Computer Graphic Metafile [34]
Clipper 5 Header [34]
OS/2 configuration file [34]
Harvard Graphics 3.0 Chart [34]
Charisma 4.0 Presentation [34]
FontChameleon Font descriptor [34]
pcAnywhere remote control file [34]
ChiWriter Document [34]
File fragments saved by Windows Disk Defragmenter or ScanDisk [34]
WordPerfect for Windows Temporary file [34]
Configuration History Log [34]
Compiled HTML file [34]
Ethnograph Data file [34]
Ventura Publisher Chapter file [34]
Character Sets (Font file) [34]
ChartMaster dBase Interface file [34]
ChartViewer file [34]
Harvard Graphics Vector <http://WhatIs.techtarget.com/definition/0,,sid9_gci528553,00.html> file [34]
CalTech Intermediate Graphic [34]
Easy CD Creator image [34]
pcAnywhere caller file [34]
Clip Gallery download package file [34]
Sim City 2000 file [34]
OS/2 change control file that tracks changes to an INI file [34]
TCU Turbo C Utilities Database Index [34]
iD/Apogee Commander Keen 1 data [34]
iD/Apogee Commander Keen 2 data [34]
iD/Apogee Commander Keen 3 data [34]
iD/Apogee Commander Keen 4 data [34]
iD/Apogee Commander Keen 5 data [34]
iD/Apogee Commander Keen 6 data [34]
Borland C++ Keyboard mapping file [34]
Generic LISP Source code [34]
Layout file (Adaptec Easy CD Creator) [34]
Java class [34]
Disk Catalog database [34]
Cricket Software Clicker File [34]
Cloe Image [34]
Clipper 5 Compiler Script [34]
Quattro Pro Clip art [34]
Windows Clipboard [34]
1st Reader Binary color screen image [34]
PhotStyler Color defintion [34]
C++ Class Definition [34]
Visual Basic Class Module [34]
Craftman Data [34]
Database file in plain text format (APPLIX TM1) [34]
1st Reader External Command Menu [34]
Command file for Windows NT (similar to a DOS .BAT file), OS/2 [34]
dBase-II program file [34]
DOS CP/M command file [34]
Corel Metafile [34]
Chessmaster saved game [34]
Card Shop Plus file [34]
CEnvi Batch file [34]
Address document [34]
CorelDRAW 4.0 Postscript Printer Header [34]
JPEG <http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci212425,00.html> Bitmap [34]
Microsoft Word for DOS User dictionary [34]
Route 66 Address Document [34]
MediaPlayer Movie [34]
Corel Move animation [34]
Corel Presentation Exchange image [34]
Raw cyan, magenta, yellow, and black bytes file [34]
CNC General Program data [34]
Configuration file used by Telnet, Windows, and other applications with varying internal formats [34]
Windows application menu options and setup file [34]
Compuworks Design Shop file [34]
Windows (or other) system content files for the help index and other purposes [34]
Conversion files (WS_FTP Pro) files that will be converted from (Example) "HTML-"HTM" for upload [34]
Word for Windows Data conversion support file [34]
WordPerfect for Windows Temporary file [34]
COBOL Source code [34]
trueSpace 2 object [34]
dBase Application Generator Template source file [34]
FORTRAN Compiled code [34]
Microsoft C compiler output as displayable machine language/assembler with original C as comments [34]
Video Text file [34]
AutoDesk Animator Color Palette [34]
Microsoft Multiplan Spreadsheet [34]
Command file (program) [34]
attempts to compile the source files of a Help system [34]
Simdir Configuration file [34]
Configuration file. [40]
CP8 256 Gray Scale image [34]
Complaints Desk Script [34]
Corel PrintOffice file (drawing) [34]
Fax Cover document [34]
Fax Cover document [34]
The Complete Fax (Fax file) [34]
Image file (Corel Print House) see CPO [34]
ColorLab Processed Image bitmap [34]
Microsoft MS-DOS code page information [34]
CeQuadrant CD Project [34]
Compel Presentation [34]
Control Panel Module [34]
Corel color palette [34]
Image file (Corel Print Office) [34]
C++ Source code [34]
CA-Cricket Presents presentation [34]
Corel Presents presentation [34]
Central Point PC Tools Backup [34]
Coloured postscript [34]
CA-Cricket Presents Template [34]
Corel Photo-Paint image [34]
dBase Encrypted Memo [34]
Macintosh Compressed Archive [34]
Corel Presentation Exchange compressed drawing [34]
Data file (Copy Books) [34]
COMPOZ Music Text [34]
Check file (Win-SFV32) (Fantasia Software) [34]
Circular reference file (Pro/Engineer) [34]
Microsoft Windows 3.x Cardfile [34]
Zortech C++ cross-reference [34]
Image file (Microsoft Golf) [34]
Corel Presents run-time presentation [34]
dBase IV Encrypted database [34]
Visual dBASE custom report [34]
WordPerfect 5.1 for Windows File Conversion resource [34]
Certificate file [34]
Crontab file) [34]
Oracle Terminal settings information [34]
CRUSH Compressed archive [34]
Comma deliminated text [34]
Corel script [34]
Statistica/w Graph file [34]
C shell script files (Hamilton Labs) [34]
csh shell script. [40]
Borland C++ 4.5 Precompiled header [34]
Script file (Kodak Dc265 Camera) [34]
Customer service data and outcome file [34]
PC Emcee On-Screen image [34]
<http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci211749,00.html> Cascading Style Sheet (MIME) [34]
Statistica/w Datasheet [34]
Stats+ Datafile [34]
Macromedia Director "Cast" (resource) file [34]
Comma-separated values file [34]
CompuShow Adjusted EGA/VGA Palette [34]
A graphic file associated with the Paint Shop Pro Graphic Editor [34]
Scitex CT bitmap [34]
PC Installer Control [34]
Symphony Character code translation [34]
dBase IV Control [34]
Used in general for files containing control information. FAXWorks uses it to keep information about each fax sent and received. [34]
Microsoft Online Course Text [34]
Pretty Good Privacy (PGP) Ciphertext file [34]
Visual Basic User control binary file [34]
Microsoft Cue Cards data [34]
Cursor library file (IconForge) [34]
Windows Cursor [34]
Sun Microsystems Cursor [34]
Dr Halo Bitmap [34]
Corel Versions archive [34]
Microsoft CodeView information screen [34]
Image [34]
Canvas drawing file [34]
Claris Works data [34]
Claris Works template [34]
Macromedia Director protected (not editable) "Cast" (resource) file [34]
C++ source code [34]
2D/3D object file (3-D Fassade Plus) [34]
Commodore 64 emulator disk image [34]
Windows Registry Backup [34]
Data access page (Microsoft Access 2000) [34]
A data file extension used to designate an error message in a [34]
Data file [34]
Extension used for some MPEG <http://WhatIs.techtarget.com/definition/0,,sid9_gci212601,00.html> files [34]
WordPerfect Merge Data [34]
Borderland's Paradox 7 table database [34]
Database file. [40]
Microsoft's Visual FoxPro <http://searchDatabase.techtarget.com/sDefinition/0,,sid13_gci213705,00.html> database container file [34]
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. [34]
Enable database (can be opened with Excel 97) [34]
Oracle 8.1.x tablespace file [34]
dBase Database Backup [34]
Schematic backup file (Orcad Schematic Capture) [34]
Compiled program file (dBase IV) [34]
Paradox Memo [34]
dBase Text Memo [34]
Memo field file (Flexfile 2) [34]
Microsoft Windows 9.x Database file (DataBoss) [34]
DataBeam image [34]
Microsoft's Visual FoxPro <http://searchDatabase.techtarget.com/sDefinition/0,,sid13_gci213705,00.html> Table file [34]
CAD file (DesignCAD) [34]
CAD file (DesignCAD) [34]
DataCAD Drawing [34]
Document Content Architecture Text file (IBM DisplayWrite) [34]
Visual Basic Active designer cache [34]
Data file (Dyadic) [34]
Disk Image file [34]
Digital Imaging and Communications in Medicine (image and data) [34]
DCM module [34]
Data CodePage (OS/2) [34]
Shockwave file [34]
Bitmap Graphics (Quark XPress) [34]
Datafile (ACT! Activity file) [34]
Desktop Color Separation file [34]
Database Dictionary file (Clarion Database Developer) [34]
Database SpellCheck Dictionary (Harvard Graphics 3.0-Symphony) [34]
Microsoft's Visual FoxPro <http://searchDatabase.techtarget.com/sDefinition/0,,sid13_gci213705,00.html> database container file [34]
Delphi compiled unit [34]
Bitmap Graphics file (Multipage PCX) [34]
Fax image (based on PCX) [34]
Macro file [34]
Microsoft's Visual FoxPro <http://searchDatabase.techtarget.com/sDefinition/0,,sid13_gci213705,00.html> database container file [34]
Compressed Archive (Macintosh DISKDOUBLER) [34]
Bitmap Graphics file [34]
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 [34]
Image File (DISKDUPE) [34]
Digital Equipment or Compaq file. Used for storing images and their [34]
Device Driver Profile (OS/2) [34]
Debian package for the Debian distribution. [40]