标点符号

$BASH 环境变量

展开为用于调用此 bash 实例的完整路径名。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$BASH_VERSION 环境变量

展开为此 bash 实例的版本号。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$CDPATH 环境变量

cd 命令的搜索路径。这是以冒号分隔的目录列表,shell 在其中查找 cd 命令指定的目标目录。一个示例值是 ``.:~:/usr''。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$ENV 环境变量

如果在 bash 执行 shell 脚本时设置此参数,则其值将被解释为包含初始化 shell 命令的文件名,如 .bashrc。ENV 的值在被解释为路径名之前,会经过参数扩展、命令替换和算术扩展。PATH 不用于搜索结果路径名。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$FIGNORE 环境变量

在执行文件名补全时要忽略的后缀的冒号分隔列表(请参阅下面的 READLINE)。后缀与 FIGNORE 中的条目之一匹配的文件名将从匹配的文件名列表中排除。一个示例值是 ``.o:~''。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$HISTCMD 环境变量

当前命令的历史记录号或历史记录列表中的索引。如果 HISTCMD 未设置,即使随后重置,它也会失去其特殊属性。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$HISTCONTROL 环境变量

如果设置为 ignorespace 值,则以空格字符开头的行不会输入到历史记录列表中。如果设置为 ignoredups 值,则与最后一行历史记录行匹配的行不会输入。ignoreboth 值结合了这两个选项。如果未设置,或者如果设置为除上述值之外的任何其他值,则解析器读取的所有行都将保存在历史记录列表中。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$HISTFILE 环境变量

保存命令历史记录的文件名。(请参阅下面的 HISTORY。)默认值为 ~/.bash_history。如果未设置,则交互式 shell 退出时不会保存命令历史记录。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$HISTFILESIZE 环境变量

历史记录文件中包含的最大行数。当为此变量分配一个值时,历史记录文件将被截断(如有必要),使其包含的行数不超过该值。默认值为 500。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$HISTSIZE 环境变量

要在命令历史记录中记住的命令数(请参阅下面的 HISTORY)。默认值为 500。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$HOME 环境变量

当前用户的主目录;cd 内置命令的默认参数。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$HOSTFILE

包含与 /etc/hosts 格式相同的文件名,当 shell 需要完成主机名时应读取该文件。该文件可以交互式更改;下次尝试主机名补全时,bash 会将新文件的内容添加到已有的数据库中。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$HOSTTYPE

自动设置为一个字符串,唯一描述 bash 正在其上运行的机器类型。默认值取决于系统。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$IFS

在 UNIX 中,$IFS 变量分隔命令。它通常配置为分号 (;) 和换行符。但是,它也可以重新配置为其他字符。数据驱动的攻击有时会试图重置 IFS 变量(例如 IFS=x),然后在数据字段内引起执行,而无需插入 shell 元字符。小知识:在 Linux 上,$FF 变量也可以像 $IFS 一样使用。来自 Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$IFS

内部字段分隔符,用于扩展后的单词分割,以及使用 read 内置命令将行分割成单词。默认值为 ``<space><tab><newline>''。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$IGNOREEOF

控制 shell 在收到 EOF 字符作为唯一输入时的操作。如果设置,则该值是在 bash 退出之前作为输入行上的第一个字符键入的连续 EOF 字符的数量。如果变量存在但没有数值,或者没有值,则默认值为 10。如果它不存在,则 EOF 表示 shell 输入结束。这仅对交互式 shell 有效。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$INPUTRC 环境变量

readline 启动文件的文件名,覆盖默认值 ~/.inputrc(请参阅下面的 READLINE)。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$LINENO

每次引用此参数时,shell 都会替换一个十进制数字,该数字表示脚本或函数中当前的顺序行号(从 1 开始)。当不在脚本或函数中时,替换的值不能保证有意义。当在函数中时,该值不是命令出现的源行号(该信息在函数执行时已丢失),而是当前函数中执行的简单命令数的近似值。如果 LINENO 未设置,即使随后重置,它也会失去其特殊属性。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$MAIL

如果此参数设置为文件名且 MAILPATH 变量未设置,则 bash 会通知用户指定文件中邮件的到达。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$MAILCHECK

指定 bash 检查邮件的频率(以秒为单位)。默认值为 60 秒。当需要检查邮件时,shell 会在提示之前执行此操作。如果此变量未设置,则 shell 将禁用邮件检查。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$MAILPATH

要检查邮件的路径名的冒号分隔列表。要打印的消息可以通过用 `?` 分隔路径名和消息来指定。$_ 代表当前邮件文件的名称。示例:MAILPATH='/usr/spool/mail/bfox?"您有邮件":~/shell-mail?"$_ 有邮件!"' Bash 为此变量提供默认值,但它使用的用户邮件文件的位置取决于系统(例如,/usr/spool/mail/$USER)。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$MAIL_WARNING

如果设置,并且 bash 正在检查邮件的文件自上次检查以来已被访问,则会打印消息“The mail in mailfile has been read”。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$OLDPWD

由 cd 命令设置的上一个工作目录。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$OSTYPE

自动设置为一个字符串,描述 bash 正在其上运行的操作系统。默认值取决于系统。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$PATH

命令的搜索路径。它是 shell 在其中查找命令的冒号分隔的目录列表(请参阅下面的命令执行)。默认路径取决于系统,由安装 bash 的管理员设置。一个常见的值是 ``/usr/gnu/bin:/usr/local/bin:/usr/ucb:/bin:/usr/bin:.''。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$PATH

shell 在存储在 PATH 环境变量中的文件路径列表中查找命令和程序。环境变量将信息存储在其他程序和命令可以访问的位置。环境变量存储诸如您正在使用的 shell、您的登录名和您当前的工作目录之类的信息。要查看当前定义的所有环境变量的列表;在提示符下键入“set”。当您在 shell 提示符下键入命令时,shell 将按顺序在 PATH 变量中列出的每个目录中查找该命令的程序文件。找到的第一个与您键入的命令匹配的程序将运行。如果命令的程序文件不在您 PATH 环境变量中列出的目录中,则 shell 返回“commands not found”错误。默认情况下,shell 不会在您当前的工作目录或主目录中查找命令。这实际上是一种安全机制,以防止您意外执行程序。如果恶意用户在您的主目录中放置了一个名为 ls 的有害程序怎么办?如果您键入 ls,并且 shell 在 /bin 目录中的真实程序之前在您的主目录中查找伪造程序,您认为会发生什么?如果您认为会发生不好的事情,那么您就走对了。由于您的 PATH 没有将当前目录作为其搜索位置之一,因此必须使用绝对路径或指定为“./program-name”的相对路径来调用当前目录中的程序。要查看 PATH 中包含哪些目录,请输入以下命令:# echo $PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11 来自 Complete-Idiot's Guide to Linux http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$PROMPT_COMMAND

如果设置,则该值在发出每个主提示符之前作为命令执行。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$PS1

此参数的值已扩展(请参阅下面的 PROMPTING),并用作主提示符字符串。默认值为 ``bash\$ ''。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$PS2

此参数的值已扩展,并用作辅助提示符字符串。默认值为 ``> ''。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$PS3

此参数的值用作 select 命令的提示符(请参阅上面的 SHELL GRAMMAR)。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$PS4

此参数的值已扩展,并且该值在 bash 在执行跟踪期间显示的每个命令之前打印。PS4 的第一个字符会根据需要多次复制,以指示多个级别的间接引用。默认值为 ``+ ''。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$PWD

由 cd 命令设置的当前工作目录。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$RANDOM

每次引用此参数时,都会生成一个随机整数。随机数序列可以通过为 RANDOM 赋值来初始化。如果 RANDOM 未设置,即使随后重置,它也会失去其特殊属性。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$SECONDS

每次引用此参数时,都会返回自 shell 调用以来的秒数。如果为 SECONDS 分配一个值。随后引用时返回的值是自分配以来的秒数加上分配的值。如果 SECONDS 未设置,即使随后重置,它也会失去其特殊属性。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

$SHLVL

每次启动 bash 实例时,此值都会递增 1。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.#01

及更高版本 用于对胶卷图片文件进行编号的方法,该胶卷已扫描用于计算机演示 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.$$$

由 OS/2 用于跟踪存档文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.(Pagis)

本机格式 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.000

数据文件 (GEOWorks) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.000-20009

用于编号旧(备份)版本的文件(例如,由安装程序更改的 CONFIG.SYS);也用于编号 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.001-999

由 (Superbase) 使用的数据库索引文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.1-STEP

备份文件 (Iomega Backup) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.113

备份数据文件 (Iomega Backup) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.123

Lotus 123 97 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.12M

Smartmaster 文件 (Lotus 1-2-3 '97) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.1ST

文档向导列表 (Microsoft Visual FoxPro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.2D

二维绘图文件 (VersaCAD) (http://www.versacad.com/vcadhome.htm) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.2GR

和 3GR VGA 图形驱动程序/配置文件 (Microsoft Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.386

用于 80386 或更高微处理器的文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.3D

三维绘图文件 (VersaCAD) (http://www.versacad.com/vcadhome.htm) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.3DM

3D NURBS 建模器, (Rhino) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.3DS

3D Studio (for DOS) 格式的文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.411

数据文件 (数码相机使用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.4GE

编译代码 (Informix 4GL) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.4GL

源代码 (Informix 4GL) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.4V

音乐文件 (Quartet) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.669

音乐 mod 文件 (Composer 669)(Unis Composer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.669

Tracker 模块 (Composer 669) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.8

源文件 (汇编) (类似于 Microsoft 汇编器) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.@@@

屏幕文件,用于安装和使用 Microsoft Codeview for C 等应用程序的说明 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.a

归档文件。lib*.a 是一个静态库。来自 Rute 用户指南 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.A

库文件 (Unix) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.A

目标代码库 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.A3L

Authorware 3.x 库 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.A3M

Authorware MacIntosh 文件 (未打包) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.A3W

Authorware Windows 文件 (未打包) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.A4L

Authorware 4.x 库 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.A4M

Authorware MacIntosh 文件 (未打包) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.A4P

Authorware 文件 (已打包,不带运行时) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.A4W

Authorware Windows 文件 (未打包) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.A5L

Authorware 5.x 库 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.A5W

Authorware Windows 文件 (未打包) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AA

Audible 音频文件 (通常用于可下载的音频书籍) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AAM

Authorware shocked 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AAS

Authorware shocked 数据包 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AB

Applix Builder 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ABF

Adobe 二进制屏幕字体 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ABK

备份文件 (PrintMaster Gold) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ABK

Corel Draw 自动备份 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ABM

音频专辑文件 (HitPlayer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ABO

Applix Builder Turbo 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ABS

MPEG 音频声音文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ABS

有时用于表示摘要(如科学论文的摘要或概要) 自动备份 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ABS

PC 平台的标准 GNU 编译器输出文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ACA

HTTP 动画文件 (Microsoft Agent) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ACA

Project Manager Workbench 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ACB

ACBM 图形图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ACC

DR-DOS Viewmax 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ACD

字符定义文件 (Microsoft Agent) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ACE

ACE Archiver 压缩 <http://searchStorage.techtarget.com/sDefinition/0,,sid5_gci211828,00.html> 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ACF

HTTP 字符文件 (Microsoft Agent) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ACI

ACI 开发评估 (ACIWEB) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ACL

Corel Draw 6 键盘快捷键文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ACM

动态链接库 (DLL) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ACM

Interplay 压缩声音文件 (Fallout 1,2, Baulder's Gate) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ACM

Windows 系统目录文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ACP

Microsoft Office 助手预览文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ACR

American College of Radiology 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ACS

字符结构化存储文件 (Microsoft Agent) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ACT

Action Presentation 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ACT

文档向导操作图 (Microsoft Visual FoxPro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ACT

FoxPro Foxdoc 操作图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ACT

Microsoft Office 助手 Actor 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ACV

用于压缩和解压缩音频数据 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AD

After Dark 屏幕保护程序 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Ada

<http://search390.techtarget.com/sDefinition/0,,sid10_gci211523,00.html> Ada 源代码文本文件 (非 GNAT) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADB

Ada 源代码文本主体文件 (GNAT) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADB

HP 100LX Organizer 约会数据库 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADC

Scanstudio 16 色位图图形文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADD

OS/2 适配器驱动程序文件,用于启动过程 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADF

Amiga <http://WhatIs.techtarget.com/definition/0,,sid9_gci211557,00.html> 磁盘文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADI

AutoCAD 设备无关二进制绘图仪文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADL

QEMM Mca 适配器描述库 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADM

After Dark MultiModule 屏幕保护程序 (Microsoft) 来自 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> 策略模板 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADN

Lotus 1-2-3 加载项文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADP

Astound Dynamite 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADP

动态页面文件 (AOLserver) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADP

FaxWorks 传真调制解调器设置文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADR

After Dark Randomizer 屏幕保护程序 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADR

Smart Address 地址簿 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADS

Ada 源代码文本规范文件 (GNAT) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADT

AdTech 传真文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADT

HP NewWave 数据文件,用于卡片应用程序 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADX

Archetype Designer 文档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADX

Dynazip Active Delivery 脚本 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADX

Lotus Approach dBase 索引 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ADZ

打包的 ADF 文件 (使用 WinZip 解压) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AE

Author/Editor 文件 (SoftQuad) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AEP

ArcExplorer 项目文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AF2

ABC FlowCharter 2.0 流程图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AF3

ABC Flowchart 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AFC

Apple Sound 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AFI

Truevision 位图图形 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AFM

Adobe 度量 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AFM

HP NewWave Cardfile 应用程序 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AG

Applix graphic 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AI

Adobe Illustrator 绘图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AI

Corel Trace 绘图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AIF

音频交换文件,Silicon Graphics 和 Macintosh 应用程序使用的一种声音格式 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AIFC

类似于 AIF (已压缩) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AIFF

<http://WhatIs.techtarget.com/definition/0,,sid9_gci213472,00.html> 类似于 AIF 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AIM

AOL Instant Messenger 启动文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AIN

AIN 压缩归档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AIO

APL 传输文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AIS

ACDSee 图像序列 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AIS

Velvet Studio 乐器文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AIS

施乐强度样本阵列图形 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AIX

HP NewWave 卡片文件应用程序数据 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AKW

包含 RoboHELP 帮助项目索引设计器中未与主题关联的所有 A 关键字 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ALAW

欧洲电话音频 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ALB

JASC Image Commander 相册 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ALI

文档文件 (SAP 专有格式) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ALIAS

Alias 图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.alias

X 窗口系统字体别名目录。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ALL

Arts & Letters 图库 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ALL

WordPerfect for Windows 通用打印机信息文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ALS

Alias 图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ALT

WordPerfect 图库菜单 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AM

Applix SHELF 宏 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AMF

DSMIA/Asylum 模块音乐 (Crusader,No Remorse,Aladdin) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AMF

音乐文件 (高级模块格式) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AMG

ACTOR 系统映像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AMG

AMGC 压缩存档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AMI

注释文件 (Cocreate SolidDesigner) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AMS

Extreme's Tracker 模块 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AMS

Velvet Studio 音乐模块 (MOD) 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AN

文本文件 (Sterling Software) (Groundworks COOL 业务团队模型) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ANC

佳能计算机图案制作器文件,是可选择的列表 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ANI

Microsoft Windows 动画光标 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ANM

DeluxPaint 动画 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ANN

Windows 3.x 帮助注释 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ANS

ANSI <http://searchCIO.techtarget.com/sDefinition/0,,sid19_gci213776,00.html> 文本文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ANT

Windows 版 SimAnt 保存的游戏 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AOS

诺基亚 9000 附加软件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AOT

应用程序二进制对象模板文件 (ZenWorks snAPPshot) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AP

Applix Presents 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AP

WHAP 压缩 Amiga 存档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APC

编译的应用程序文件 (Centura Team Developer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APC

Lotus 1-2-3 打印机驱动程序 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APD

动态应用程序库文件 (Centura Team Developer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APD

Lotus 1-2-3 打印机驱动程序 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APF

Lotus 1-2-3 打印机驱动程序 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APF

项目文件 (Allaire) (由 Homesite 创建) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.API

应用程序编程接口;由 Adobe Acrobat 使用 <http://searchCIO.techtarget.com/sDefinition/0,,sid19_gci211517,00.html> 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.API

Lotus 1-2-3 打印机驱动程序 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APL

APL 工作区文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APL

应用程序库文件 (Centura Team Developer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APP

dBase 应用程序生成器对象 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APP

DR-DOS 可执行应用程序 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APP

FoxPro 生成的应用程序 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APP

生成的应用程序或活动文档 (Microsoft Visual FoxPro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APP

正常模式应用程序文件 (Centura Team Developer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APP

Symphony 插件应用程序 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APR

ArcView 项目文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APR

员工评估绩效评估文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APR

Lotus Approach 97 视图文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APS

具有错误检查的高级修补系统,(类似于 IPS) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APS

Microsoft Visual C++ 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APT

Lotus Approach 数据视图文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APT

文本模式应用程序文件 (Centura Team Developer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APX

Borland C++ Appexpert 数据库 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.APX

Lotus Approach Paradox 特定信息文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AQ

Applix 数据 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ARC

LH ARC (旧版本) 压缩存档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ARC

SQUASH 压缩存档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ARF

自动响应文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ARI

ARI 压缩存档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ARI

Aristotle 音频文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ARJ

Robert Jung ARJ 压缩存档 (ARJ) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ARK

ARC 文件归档器 CPM/Port 存档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ARL

AOL v4.0 组织器文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ARR

Atari Cubase Arrangement 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ART

使用 Johson-Grace 压缩算法压缩的 AOL 图像文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ART

佳能 Crayola 艺术 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ART

剪贴画 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ART

First Publisher 栅格图形 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ART

光线追踪器文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ART

Xara Studio 绘图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ARX

ARX 压缩存档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AS

Applix 电子表格 来自 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> 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASC

ASCII <http://WhatIs.techtarget.com/definition/0,,sid9_gci211600,00.html> 文本文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASC

PGP <http://searchSecurity.techtarget.com/sDefinition/0,,sid14_gci214292,00.html> 加密装甲 <encrypti.htm> 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASD

Astound 演示文稿 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASD

Lotus 1-2-3 屏幕驱动程序 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASD

Microsoft 高级流媒体格式 (ASF) 描述文件;打开 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASD

WinWord 自动保存文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASE

Velvet Studio 采样文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASF

Lotus 1-2-3 屏幕字体 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASF

Microsoft 高级流媒体格式 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASF

音乐文件 (Electronic Arts) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASF

StratGraphics 数据文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASH

TASM 3.0 汇编语言头文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASI

Borland C++/Turbo C 汇编程序包含文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASM

汇编程序 <http://search390.techtarget.com/sDefinition/0,,sid10_gci211604,00.html> 语言源文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASM

Pro/E 装配文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASO

Astound Dynamite 对象 来自 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 (包含 Microsoft 服务器处理脚本的 HTML 文件) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASP

Astound 演示文稿 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASP

Procomm Plus 设置和连接脚本 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AST

Astound 多媒体文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AST

Claris Works “助手”文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASV

DataCAD 自动保存文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASX

Cheyenne 备份脚本 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASX

Microsoft 高级流媒体重定向器文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ASX

视频文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AT2

Aldus Persuasion 2.0 自动模板 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ATM

Adobe Type Manager 数据/信息文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ATT

AT&T Group 4 位图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ATW

Windows 版 AnyTime Deluxe 个人信息管理器文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.au

音频格式 (原始 Sun Microsystems 通用声音文件)。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AU

音频 U-law (发音为 mu-law) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AU

Sun/NeXT/DEC/UNIX 声音文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AUD

音频文件 (Westwood Studios) (Kyrandia 3,C&C,RedAlert,C&C:TS) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AUX

ChiWriter 辅助字典文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AUX

TeX/LaTeX 辅助参考文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AVA

Avagio 出版物 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AVB

Inculan Anti-Virus 病毒感染文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AVI

Microsoft 音频视频交错文件,用于 Windows 电影 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.avi

视频格式。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AVR

音频视觉研究文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AVS

应用程序可视化系统文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AVS

Stardent AVS-X 图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AVX

文件扩展名 (ArcView) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AW

Applix Words 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AW

HP AdvanceWrite 文本文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AWD

FaxView 文档图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.awk

awk 程序源代码文件。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AWK

AWK 脚本/程序 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AWM

Animation Works 电影 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AWR

用于数字存储音频的 Telsis 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AWS

StatGraphics 数据文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AXL

ArcIMS XML 项目文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AXT

ASCII 应用程序对象模板 (ZenWorks snAPPshot) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.AXX

来自多卷存档的 ARJ 压缩文件 (xx = 01 到 99 之间的数字) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.B

Applause 批处理列表 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.B&W

1st Reader 单色二进制屏幕图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.B&W

Atari/Macintosh 黑白图形 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.B1N

1st Reader 单色和彩色二进制屏幕图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.B30

ABC Ventura 出版商打印机字体 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.B4

Helix Nuts and Bolts 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.B8

原始图形文件 (Piclab Plane II) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BAD

Oracle 坏文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BAK

备份文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BAL

Ballade 乐谱 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BAR

dBase 应用程序生成器水平菜单对象 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BAS

BASIC <http://searchVB.techtarget.com/sDefinition/0,,sid8_gci213805,00.html> 源代码 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BAT

批处理文件 <http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci211642,00.html> 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BB

Papyrus 数据库备份 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BBL

TeX/BibTeX 书目参考文献文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BBM

Deluxe Paint 位图图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BBS

电子公告板系统文本 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BCH

批处理对象 (dBase 应用程序生成器) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BCH

Datalex Entry Point 90 数据文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BCM

Microsoft Works 通信文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BCO

Bitstream Outline 字体描述文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BCP

Borland C++ Makefile 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BCW

Borland C++ 4.5 环境设置文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BDB

Microsoft Works 数据库文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BDF

Egret 数据文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BDF

西点桥梁设计器文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BDR

Microsoft Publisher 边框 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BEZ

Bitstream Outline 字体描述 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BF2

Bradford 2 字体 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BFC

Windows 95 公文包文档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BFM

字体度量文件 (Unix/大型机) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BFX

传真文档文件 (BitFax) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BG

Microsoft 双陆棋游戏文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BGA

OS/2 图形阵列 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BGI

Borland 图形界面驱动程序 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BGL

Microsoft 飞行模拟器场景文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BHF

pcAnywhere 主机文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BI

二进制 <http://WhatIs.techtarget.com/definition/0,,sid9_gci211661,00.html> 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BIB

书目文件 (ASCII) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.bib

bibtex LATEX 书目源文件。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BIB

数据库 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BIB

TeX/BibTeX 文献数据库 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BIF

GroupWise 初始化文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BIF

图像采集板二进制图像黑白图形 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BIFF

XLITE 3D 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BIN

二进制 <http://WhatIs.techtarget.com/definition/0,,sid9_gci211661,00.html> 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BIO

OS/2 Bios 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BIT

X11 位图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BK

备份文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BK

JetFax 传真簿文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BK!

WordPerfect for Windows 文档备份 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BK$

备份文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BK1

WordPerfect for Windows 文档窗口 1 的定时备份文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BK2

WordPerfect for Windows 文档窗口 2 的定时备份文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BK3

WordPerfect for Windows 文档窗口 3 的定时备份文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BK4

WordPerfect for Windows 文档窗口 4 的定时备份文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BK5

WordPerfect for Windows 文档窗口 5 的定时备份文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BK6

WordPerfect for Windows 文档窗口 6 的定时备份文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BK7

WordPerfect for Windows 文档窗口 7 的定时备份文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BK8

WordPerfect for Windows 文档窗口 8 的定时备份文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BK9

WordPerfect for Windows 文档窗口 9 的定时备份文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BKP

TurboVidion 对话框设计器备份,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BKS

IBM BookManager Read 书架文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BKS

Microsoft Works 电子表格备份,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BKW

FontEdit 字体集镜像,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BLB

资源存档 (DreamWorks),(Neverhood),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BLD

BASIC 可加载图片文件 (Bloadable picture file),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BLK

Alias Wavefront 图像,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BLK

WordPerfect for Windows 临时文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BM

Windows 系统位图,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BM1

Apogee BioMenace 数据,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BMF

Corel Gallery 文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BMK

Windows 帮助书签,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.bmp

Microsoft 位图文件图像格式。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BMP

Windows 或 OS/2 位图,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BN

乐器库文件 (AdLib),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BNK

乐器库文件 (AdLib),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BNK

音效库文件 (Electronic Arts),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BOL

压缩存档库文件 (Microsoft Booasm.arc),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BOM

物料清单文件 (Orcad Schematic Capture),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BOO

Microsoft Booasm.arc 压缩存档,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BOOK

Adobe FrameMaker 书籍,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BOX

Lotus Notes 文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BPC

商业计划工具包图表,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BPL

Borland Delphi 4 打包库,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BPS

Microsoft Works 文档,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BPT

CorelDraw 位图填充文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BPX

Truevision Targa 位图,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BQY

BrioQuery 文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BR

Bridge 脚本,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BRD

Eagle 布局文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BRK

Brooktrout 传真邮件文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BRW

与金融机构贷款申请相关的应用程序文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BRX

用于浏览多媒体选项索引的文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BRZ

用于非常大的数据库备份或恢复的 DbBRZ 文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BS1

Apogee Blake Stone 数据文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BSA

BSARC 压缩存档,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BSC

Apple II 压缩存档,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BSC

Fortran Pwbrmake 对象,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BSC

MS Developer Studio (MSDev) 浏览器信息,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BSP

Quake 地图文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BS_

Microsoft Bookshelf 查找菜单 shell 扩展,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BTM

Norton Utilities 使用的批处理 <http://search390.techtarget.com/sDefinition/0,,sid10_gci211641,00.html> 文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BTR

数据库文件 (Btrieve 5.1),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BUD

Quicken 的备份磁盘,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BUG

Bug 和问题文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BUN

CakeWalk 音频捆绑包 (一个 MIDI <http://WhatIs.techtarget.com/definition/0,,sid9_gci212572,00.html> 程序),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BUP

备份,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BUT

Buttons! 按钮定义,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BUY

电影数据文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BV1

WordPerfect for Windows 文档 1 中插入点下方的溢出文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BV2

WordPerfect for Windows 文档 2 中插入点下方的溢出文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BV3

WordPerfect for Windows 文档 3 中插入点下方的溢出文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BV4

WordPerfect for Windows 文档 4 中插入点下方的溢出文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BV5

WordPerfect for Windows 文档 5 中插入点下方的溢出文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BV6

WordPerfect for Windows 文档 6 中插入点下方的溢出文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BV7

Wordperfect for Windows 文档 7 中插入点下方的溢出文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BV8

WordPerfect for Windows 文档 8 中插入点下方的溢出文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BV9

WordPerfect for Windows 文档 9 中插入点下方的溢出文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BW

SGI 黑白图像文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BW

Silicon Graphics 原始红、绿和蓝字节文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BWB

Visual Baler 电子表格应用程序,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BWR

Kermit Beware 错误列表,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BWV

Business Wave 文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BYU

BYU 电影,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BZ

Bzip 压缩文件 (Inix),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.bz

使用 bzip 压缩算法/程序压缩的文件。这些文件现在大多是冗余的。绝大多数文件都使用更优越的 bzip2 程序压缩。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.BZ2

Bzip 压缩文件 (Unix) (取代 Bz),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.bz2

使用 bzip2 压缩程序压缩的文件。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.B_W

Atari/Macintosh 黑白图形 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.C

C 代码,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.c

C 程序源代码。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.C

Secure Remote (CheckPoint VPN) 的站点配置,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.C--

Sphinx C-- 源代码,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.C00

Ventura Publisher 打印文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.C01

台风波 (Typhoon wave),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.C86

Computer Innovation (C86) 源代码,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CA

Telnet 服务器初始缓存数据文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CAB

Microsoft cabinet 文件(为软件分发压缩的程序文件),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CAC

dBase IV 可执行文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CAD

Softdesk Drafix Cad 文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CAG

目录文件 (Microsoft Clip Gallery v. 2.x,3.x,4.x),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CAL

日历计划数据文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CAL

CALS 压缩位图,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CAL

SuperCalc 4/5 电子表格,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CAM

Casio 相机文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CAN

Navigator 传真,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CAP

压缩音乐文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CAP

Telix 会话捕获文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CAP

Ventura Publisher 标题,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CAR

AtHome 助手文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CAS

逗号分隔的 ASCII 文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CAT

dBase 目录文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CAT

Quicken IntelliCharge 分类文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CB

Microsoft 干净启动 <http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci211696,00.html> 文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CBC

CubiCalc 模糊逻辑系统文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CBI

列二进制文件(用于 IBM 大型机系统),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CBL

Cobol 源代码,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CBM

XLib 编译位图,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CBT

通用计算机辅助培训文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CC

C++ 源代码,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CC

Visual dBASE 自定义类文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.cc, .cxx, .C, .cpp

C++ 程序源代码。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CCA

cc:mail 存档文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CCB

Visual Basic 动画按钮配置文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CCC

Curtain Call 本机位图图形,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CCE

数据文件 (Calendar Creator Plus),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CCF

OS/2 中使用的多媒体查看器配置文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CCF

Symphony Communications 通信配置文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CCH

Corel Chart 图表,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CCL

Intalk 通信命令语言,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CCM

Lotus CC:Mail “邮箱”文件(例如,INBOX.CCM),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CCO

CyberChat 数据文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CCO

XBTX 图形,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CCT

Macromedia Director Shockwave 演员文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CDA

CD 音频轨道,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CDB

CardScan 数据库 (CardScan),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CDB

剪贴板文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CDB

概念模型备份文件 (PowerDesigner),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CDB

TCU Turbo C Utilities 主数据库,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CDF

<http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci213841,00.html> Microsoft 频道定义格式,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CDF

Netcdf 图形文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CDFS

光盘文件系统 (WindRiver),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CDI

Phillips Compact Disk Interactive 文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CDK

Atari Calamus 文档,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CDM

概念数据模型文件 (PowerDesigner Data Architect) (Sybase),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CDM

概念模型文件 (PowerDesigner),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CDM

Visual dBASE 自定义数据模块,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CDR

Corel Draw 矢量绘图文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CDR

原始音频 CD 数据文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CDT

Corel Draw 模板,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CDT

CorelDraw 数据文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CDX

Corel Draw 压缩绘图,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CDX

Microsoft 的 Visual Foxpro <http://searchDatabase.techtarget.com/sDefinition/0,,sid13_gci213705,00.html> 索引,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CE

The FarSide 计算机日历主 CE 文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CEG

Tempra Show 位图图形,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CEL

AutoDesk Animator Cel 图像,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CEL

CIMFast 事件语言文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CER

证书文件 (MIME x-x509-ca-cert),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CF

Imake 配置文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.cf, .cfg

配置文件或脚本。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CFB

Comptons 多媒体文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CFG

配置文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CFL

CorelFLOW 图表,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CFM

ColdFusion <http://searchDatabase.techtarget.com/sDefinition/0,,sid13_gci211812,00.html> 模板,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CFM

Corel FontMaster 文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CFM

Creative FM-Music,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CFM

Visual dBASE Windows 客户表单,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CFN

Atari Calamus 字体数据文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CFO

TCU Turbo C Utilities C 表单对象,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CFP

The Complete Fax 便携式传真文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CGA

Ventura Publisher 显示字体文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CGI

<http://searchDatabase.techtarget.com/sDefinition/0,,sid13_gci213846,00.html> 通用网关接口脚本,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.cgi

生成网页输出的可执行脚本。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CGM

计算机图形元文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CH

Clipper 5 标头,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CH

OS/2 配置文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CH3

Harvard Graphics 3.0 图表,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CH4

Charisma 4.0 演示文稿,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CHD

FontChameleon 字体描述符,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CHF

pcAnywhere 远程控制文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CHI

ChiWriter 文档,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CHK

由 Windows 磁盘碎片整理程序或 ScanDisk 保存的文件片段,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CHK

WordPerfect for Windows 临时文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CHL

配置历史记录,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CHM

编译的 HTML 文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CHN

Ethnograph 数据文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CHP

Ventura Publisher 章节文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CHR

字符集(字体文件),来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CHT

ChartMaster dBase 接口文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CHT

ChartViewer 文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CHT

Harvard Graphics 矢量 <http://WhatIs.techtarget.com/definition/0,,sid9_gci528553,00.html> 文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CIF

CalTech Intermediate Graphic,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CIF

Easy CD Creator 映像,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CIF

pcAnywhere 呼叫者文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CIL

Clip Gallery 下载包文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CIM

Sim City 2000 文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CIN

OS/2 更改控制文件,用于跟踪对 INI 文件的更改,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CIX

TCU Turbo C Utilities 数据库索引,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CK1

iD/Apogee Commander Keen 1 数据,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CK2

iD/Apogee Commander Keen 2 数据,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CK3

iD/Apogee Commander Keen 3 数据,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CK4

iD/Apogee Commander Keen 4 数据 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CK5

iD/Apogee Commander Keen 5 数据 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CK6

iD/Apogee Commander Keen 6 数据 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CKB

Borland C++ 键盘映射文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CL

通用 LISP 源代码 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CL3

布局文件 (Adaptec Easy CD Creator) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CLASS

Java 类 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CLG

磁盘目录数据库 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CLL

Cricket Software Clicker 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CLO

Cloe 图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CLP

Clipper 5 编译器脚本 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CLP

Quattro Pro 剪贴画 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CLP

Windows 剪贴板 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CLR

1st Reader 二进制彩色屏幕图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CLR

PhotStyler 颜色定义 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CLS

C++ 类定义 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CLS

Visual Basic 类模块 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CM

Craftman 数据 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CMA

纯文本格式的数据库文件 (APPLIX TM1) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CMD

1st Reader 外部命令菜单 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CMD

Windows NT 的命令文件(类似于 DOS 的 .BAT 文件), OS/2 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CMD

dBase-II 程序文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CMD

DOS CP/M 命令文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CMF

Corel 元文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CMG

Chessmaster 保存的游戏 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CMK

Card Shop Plus 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CMM

CEnvi 批处理文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CMP

地址文档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CMP

CorelDRAW 4.0 Postscript 打印机页眉 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CMP

JPEG 位图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CMP

Microsoft Word for DOS 用户词典 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CMP

Route 66 地址文档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CMR

MediaPlayer 电影 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CMV

Corel Move 动画 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CMX

Corel Presentation Exchange 图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CMYK

原始青色、品红色、黄色和黑色字节文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CNC

CNC 通用程序数据 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CNF

Telnet、Windows 和其他应用程序使用的配置文件,内部格式各不相同 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CNM

Windows 应用程序菜单选项和设置文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CNQ

Compuworks Design Shop 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CNT

Windows(或其他)系统内容文件,用于帮助索引和其他目的 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CNV

转换文件 (WS_FTP Pro) 文件,这些文件将从(例如)“HTML-”HTM“转换为上传 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CNV

Word for Windows 数据转换支持文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CNV

WordPerfect for Windows 临时文件,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.COB

COBOL 源代码 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.COB

trueSpace 2 对象 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.COD

dBase 应用程序生成器模板源文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.COD

FORTRAN 编译代码 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.COD

Microsoft C 编译器输出,作为可显示的机器语言/汇编程序,并以原始 C 代码作为注释 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.COD

视频文本文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.COL

AutoDesk Animator 调色板 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.COL

Microsoft Multiplan 电子表格 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.COM

命令文件(程序) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Compiler

尝试编译帮助系统的源文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CON

Simdir 配置文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.conf, .config

配置文件。 来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CP8

CP8 256 灰度图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPD

投诉台脚本 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPD

Corel PrintOffice 文件(绘图) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPD

传真封面文档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPE

传真封面文档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPF

The Complete Fax (传真文件) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPH

图像文件 (Corel Print House) 参见 CPO 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPI

ColorLab 处理的图像位图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPI

Microsoft MS-DOS 代码页信息 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPJ

CeQuadrant CD 项目 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPL

Compel 演示文稿 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPL

控制面板模块 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPL

Corel 调色板 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPO

图像文件 (Corel Print Office) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPP

C++ 源代码,来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPP

CA-Cricket Presents 演示文稿 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPR

Corel Presents 演示文稿 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPS

Central Point PC Tools 备份 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPS

彩色 postscript 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPT

CA-Cricket Presents 模板 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPT

Corel Photo-Paint 图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPT

dBase 加密备忘录 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPT

Macintosh 压缩存档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPX

Corel Presentation Exchange 压缩绘图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPY

数据文件 (Copy Books) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CPZ

COMPOZ 音乐文本 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CRC

检查文件 (Win-SFV32) (Fantasia Software) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CRC

循环引用文件 (Pro/Engineer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CRD

Microsoft Windows 3.x Cardfile 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CRF

Zortech C++ 交叉引用 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CRH

图像文件 (Microsoft Golf) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CRP

Corel Presents 运行时演示文稿 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CRP

dBase IV 加密数据库 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CRP

Visual dBASE 自定义报表 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CRS

WordPerfect 5.1 for Windows 文件转换资源 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CRT

证书文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CRT

Crontab 文件) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CRT

Oracle 终端设置信息 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CRU

CRUSH 压缩存档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CSA

逗号分隔文本 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CSC

Corel 脚本 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CSG

Statistica/w 图形文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CSH

C shell 脚本文件 (Hamilton Labs) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.csh

csh shell 脚本。 来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CSM

Borland C++ 4.5 预编译头文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CSM

脚本文件 (Kodak Dc265 Camera) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CSO

客户服务数据和结果文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CSP

PC Emcee 屏幕图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CSS

层叠样式表 (MIME) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CSS

Statistica/w 数据表 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CSS

Stats+ 数据文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CST

Macromedia Director "Cast" (资源) 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CSV

逗号分隔值文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CSV

CompuShow 调整后的 EGA/VGA 调色板 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CT

与 Paint Shop Pro 图形编辑器关联的图形文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CT

Scitex CT 位图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CTC

PC Installer Control 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CTF

Symphony 字符代码转换 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CTL

dBase IV Control 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CTL

通常用于包含控制信息的文件。FAXWorks 使用它来保存有关每个已发送和已接收传真的信息。 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CTX

Microsoft 在线课程文本 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CTX

Pretty Good Privacy (PGP) 密文文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CTX

Visual Basic 用户控件二进制文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CUE

Microsoft Cue Cards 数据 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CUL

光标库文件 (IconForge) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CUR

Windows 光标 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CURSOR

Sun Microsystems 光标 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CUT

Dr Halo 位图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CV

Corel Versions 存档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CV

Microsoft CodeView 信息屏幕 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CVG

图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CVS

Canvas 绘图文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CWK

Claris Works 数据 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CWS

Claris Works 模板 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CXT

Macromedia Director 受保护的(不可编辑)"Cast"(资源)文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.CXX

C++ 源代码 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.D2D

2D/3D 对象文件 (3-D Fassade Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.D64

Commodore 64 模拟器磁盘映像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DAO

Windows 注册表备份 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DAP

数据访问页 (Microsoft Access 2000) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DAT

数据文件扩展名,用于在以下位置指定错误消息 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DAT

数据文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DAT

用于某些 MPEG 文件的扩展名 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DAT

WordPerfect 合并数据 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DB

Borderland's Paradox 7 表数据库 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.db

数据库文件。 来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DBC

Microsoft 的 Visual FoxPro 数据库容器文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DBF

一个 dBASE 文件,一种由 Ashton-Tate 发起的格式,但被 Act!、Clipper、FoxPro、Arago、Wordtech、xBase 以及类似的数据库或数据库相关产品所理解。 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DBF

启用数据库(可以用 Excel 97 打开) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DBF

Oracle 8.1.x 表空间文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DBK

dBase 数据库备份 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DBK

原理图备份文件 (Orcad Schematic Capture) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DBO

编译的程序文件 (dBase IV) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DBQ

Paradox 备忘录 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DBT

dBase 文本备忘录 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DBV

备忘录字段文件 (Flexfile 2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DBW

Microsoft Windows 9.x 数据库文件 (DataBoss) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DBX

DataBeam 图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DBX

Microsoft 的 Visual FoxPro 表文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DC

CAD 文件 (DesignCAD) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DC2

CAD 文件 (DesignCAD) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DC5

DataCAD 绘图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DCA

文档内容架构文本文件 (IBM DisplayWrite) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DCA

Visual Basic Active Designer 缓存 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DCF

数据文件 (Dyadic) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DCF

磁盘映像文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DCIM

医学数字成像和通信 (图像和数据) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DCM

DCM 模块 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DCP

数据代码页 (OS/2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DCR

Shockwave 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DCS

位图图形 (Quark XPress) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DCS

数据文件 (ACT! 活动文件) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DCS

桌面分色文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DCT

数据库字典文件 (Clarion Database Developer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DCT

数据库拼写检查字典 (Harvard Graphics 3.0-Symphony) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DCT

Microsoft 的 Visual FoxPro 数据库容器文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DCU

Delphi 编译单元 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DCX

位图图形文件 (多页 PCX) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DCX

传真图像(基于 PCX) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DCX

宏文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DCX

Microsoft 的 Visual FoxPro 数据库容器文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DD

压缩存档 (Macintosh DISKDOUBLER) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DDB

位图图形文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DDF

Btrieve 或 Xtrieve 数据定义文件,其中包含描述 Btrieve 或 Xtrieve 文件的元数据 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DDI

图像文件 (DISKDUPE) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DDIF

Digital Equipment 或 Compaq 文件。用于存储图像及其 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DDP

设备驱动程序配置文件 (OS/2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.deb

Debian 发行版的 Debian 软件包。 来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DEB

调试脚本 (DOS Debug) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DEF

汇编头文件 (Geoworks) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DEF

C++ 定义文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DEF

定义模块文件 (3-D Fassade Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DEF

SmartWare II 数据 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DEFI

Oracle 7 卸载脚本 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DEM

符合美国地质调查局 (USGS) 数字高程模型 (Vista Pro) 标准的文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DEM

演示文件 (Descent) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DEM

图形文件 (Vista Pro) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DEP

Visual Basic 安装向导依赖文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DER

证书文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DEV

设备驱动程序 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DEWF

Macintosh SoundCap/SoundEdit 录制的乐器文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DEZ

加密的 zip 文件 (DES 加密) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DFD

数据流程图图形 (Prosa) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DFI

轮廓字体描述 (Digifont) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DFL

默认程序设置 (Signature) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DFM

数据流程图模型 (Prosa) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DFS

声音文件 (Delight) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DFV

打印窗体值 (Microsoft Word) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DGN

Microstation95 CAD 工程图 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DGS

诊断报告 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DH

依赖信息文件 (Geoworks) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DHP

图形文件 (Dr. Halo II-III PIC 格式) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DHT

数据文件 (Gauss) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DIA

Diagraph 图形文件 (Computer Support Corporation) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DIB

设备无关位图 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DIC

字典文件 (Lotus Notes, Domino) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DIC

字典文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DICM

医学数字成像和通信文件 (DICOM) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DIF

数据交换格式电子表格 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DIF

数据交换输出文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DIF

数据库文件 (VisiCalc) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DIF

文本文件 (来自数据交换格式的输出) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.diff

diff 程序的输出,指示文件或源树之间的差异。 来源: Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DIG

Digilink 文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DIG

Sound Designer I 音频 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DIP

图形文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DIR

拨号目录 (ProComm Plus) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DIR

目录 (VAX) (DEC) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DIR

Macromedia Director 文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DIR

电影 (MacroMind Director 4.x) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.dir

X Window 系统字体/其他数据库目录。 来源: Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DIS

分发文件 (VAX Mail) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DIS

光线追踪器文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DIS

同义词库文件 (CorelDraw) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DIZ

描述文件 (ZIP 中的描述) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DKB

图形文件 (光线跟踪 DKBTrace) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DL

图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DLD

数据文件 (Lotus 1-2-3) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DLG

C++ 对话脚本 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DLL

<http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci213902,00.html> 动态链接库文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DLL

导出/导入过滤器 (CorelDraw) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DLS

可下载声音 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DLS

交互式音乐架构 (IMA)(Microsoft),(Blood2) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DLS

安装文件 (Norton DiskLock) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DMD

Visual dBASE 数据模块 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DMF

打包的 Amiga 磁盘映像 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DMF

X-Trakker 音乐模块 (MOD) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DMO

演示文件 (Derive) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DMP

转储文件 (屏幕或内存) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DMS

压缩存档 (Amiga DISKMASHER) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DOB

Visual Basic 用户文档 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DOC

DisplayWrite 文档 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DOC

文档格式 (Interleaf) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DOC

FrameMaker 或 FrameBuilder 文档 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DOC

Microsoft Word 文档 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DOC

WordPerfect 文档 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DOC

WordStar 文档 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DOG

屏幕保护程序文件 (Laughing Dog Screen Saver) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DOH

依赖信息文件 (Geoworks) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DOS

外部命令文件 (1st Reader) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DOS

网络驱动程序文件 (PKT_DIS.dos) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DOS

文本文件 (DOS) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DOT

线型定义 (CorelDraw) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DOT

Word 文档模板 (Microsoft Word for Windows) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DOX

文本文件 (MultiMate 4.x) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DOX

用户文档二进制形式 (Visual Basic) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DOZ

Zip 外的描述 (VENDINFO) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DP

日历文件 (Daily Planner) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DP

数据文件 (DataPhile) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DPL

Borland Delphi 3 打包库 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DPR

项目头文件 (Borland C++) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DPT

出版物文件 (Publish-It!) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DR9

目录文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DRAW

Acorn 的基于对象的矢量图像 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DRC

设计规则检查报告文件 (Orcad Schematic Capture) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DRS

显示资源文件 (WordPerfect for Windows) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DRV

设备驱动程序 (使设备运行所必需) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DRV

驱动程序 <http://searchStorage.techtarget.com/sDefinition/0,,sid5_gci212002,00.html> 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DRW

Lotus Freelance 图像 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DRW

Pro/E 工程图 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DRW

矢量图形 (Micrografx) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DS4

Micrografx Designer 图像 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DS4

矢量图形 (Micrografx) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSC

丢弃文件 (Oracle) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSD

数据库文件 (DataShaper) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSF

Micrografx Designer v7.x 文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSG

DooM 保存的游戏 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSK

驱动程序文件 (Novell Netware) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSK

项目桌面文件 (Borland C++/Turbo Pascal) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSM

数字声音模块 (DSI) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSM

Dynamic Studio 音乐模块 (MOD) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSM

音乐模块文件 (DSIK) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSN

设计 (Object System Designer) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSN

ODBC 数据源 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSN

原理图文件 (Orcad Schematic Capture) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSP

显示参数 (Signature) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSP

图形显示驱动程序 (Dr. Halo) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSP

Microsoft Developer Studio 项目 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSQ

Corel QUERY 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSR

驱动程序资源 (WordPerfect for Windows) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSR

Visual Basic Active designer 文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSS

数字声音文件 (Digital Soup)) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSS

屏幕保护程序文件 (DCC) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DST

分发文件 (PC-RDist, by Pyzzo) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DST

绣花机图形文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSW

桌面设置 (Borland C++ 4.5) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSW

Microsoft Developer Studio 工作区文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DSX

Visual Basic Active designer 二进制文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DTA

数据文件 (Turbo C++) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DTA

世界银行 STARS 数据 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DTD

<http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci213918,00.html> SGML 文档类型定义 (DTD <http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci213918,00.html>) 文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DTED

数字地形高程数据(地理数据格式) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DTF

数据库文件 (PFS-Questions & Answers) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DTF

Symantec Q&A 关系数据库 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DTM

模块文件 (DigiTrakker) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DTP

桌面布局文件 (SecurDesk!/SecurDesk! LV) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DTP

模板文件 (Pressworks) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DTP

文本文档 (Timeworks Publisher 3.x) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DT_

数据文件分支 (Macintosh) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DUN

Microsoft 拨号网络导出文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DUP

重复备份 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DV

数字视频 (MIME) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DVC

数据文件 (Lotus 1-2-3) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DVF

与摄像机相关的图形文件 (DV Studio) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DVI

二进制文件 (TeX) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DVI

设备无关文档 (TeX) (LaTeX) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.dvi

设备无关文件。 .tex LATEX 文件的格式化输出。 来源: Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DVP

Desqview 程序信息 (DESQview) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DVP

设备参数文件 (AutoCAD) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DW2

工程图文件 (DesignCAD for Windows) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DWC

压缩存档 (DWC) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DWD

DiamondWare 数字文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DWF

工程图 Web 文件 (Microsoft WHIP autoCAD reader) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DWF

矢量图形 (Autodesk) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DWG

AutoCAD 工程图 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DWG

AutoCAD 工程图,或更旧的通用 CAD 工程图文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DWP

文档文件 (DeScribe) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DWS

工作区文件 (Dyadic) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DX

数字电气公司 (DEC) 数据交换文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DXF

数据交换文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DXF

绘图交换 (eXchange) 格式,二进制 DWG 格式的文本表示 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DXF

绘图交换格式 (AutoCAD) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DXN

传真文档 (Fujitsu dexNet) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DXR

Macromedia Director 受保护的(不可编辑的)电影文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.DYN

数据文件 (Lotus 1-2-3) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.E00

Coverage 导出文件 (ArcInfo) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.e00

交换文件 (Arc/Info) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EBJ

错误检查对象文件 (Geoworks) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ED5

EDMICS 图像 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ED6

EDMICS 图像 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EDA

Ensoniq ASR 磁盘映像 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EDB

ROOTS3 家谱数据文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EDD

元素定义文档 (FrameMaker+SGML 文档) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EDE

Ensoniq EPS 磁盘映像 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EDK

Ensoniq KT 磁盘映像 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EDQ

Ensoniq SQ1/SQ2/KS32 磁盘映像 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EDS

Ensoniq SQ80 磁盘映像 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EDT

默认设置 (VAX Edt 编辑器) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EDV

Ensoniq VFX-SD 磁盘映像 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EEB

公式编辑器按钮栏 (WordPerfect for Windows) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EFA

Ensoniq ASR 文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EFE

Ensoniq EPS 文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EFK

Ensoniq KT 文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EFQ

Ensoniq SQ1/SQ2/KS32 文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EFS

Ensoniq SQ80 文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EFT

高分辨率屏幕字体 (ChiWriter) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EFV

Ensoniq VFX-SD 文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EFX

传真文档 (Efax Reader) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EFX

传真文档 (Everex EFax) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EGA

EGA 显示字体 (Ventura Publisher) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.el

Lisp 程序源代码。 来源: Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EL

Lisp 源代码 (eMacs) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ELC

eMac Lisp 源代码 (字节编译) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ELM

主题包文件,用于 (Microsoft FrontPage) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ELT

事件列表文本文件 (Prosa) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EMB

嵌入式库文件 (Everest) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EMD

ABT 扩展模块 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EMF

增强型 Windows 元文件 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EML

Microsoft Outlook Express 邮件消息 (MIME RFC 822) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EMS

增强型菜单系统配置文件 (PC Tools) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EMU

终端仿真数据文件 (BITCOM) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ENC

编码文件 (UUENCODEd File, Lotus 1-2-3) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ENC

音乐文件 (Encore) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ENC

视频文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.END

箭头头定义表 (CorelDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ENFF

中性格式 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ENG

图表图形文件 (EnerGraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ENG

字典引擎文件 (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ENV

包络宏 (WOPR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ENV

环境文件 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EPD

出版物文件 (Express Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EPHTML

增强型 Perl 解析 HTML From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EPI

文档文件 (Express Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EPS

封装 Postscript 图像文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EPS

封装 Postscript 矢量图形 (Adobe Illustrator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EPS

打印机字体 (Epson, Xerox, Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EPS2

Adobe Level II 封装 Postscript From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EPSF

封装 PostScript From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EPSI

Adobe 封装 Postscript 交换格式 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EQN

方程式文件 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ER1

ERWin 文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ERD

实体关系图图形文件 (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ERM

实体关系图模型文件 (Prosa) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ERR

编译错误文件 (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ERR

存储 RoboHELP Help 生成时产生的错误消息 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ERX

ERWin 文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ESH

扩展 Shell 批处理文件 (DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ESL

可分发支持库文件 (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ESPS

ESPS 音频文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ETH

文档文件 (Ethnograph 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ETX

结构化增强文本 (SetText) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EUI

Ensoniq ESP 系列压缩磁盘映像 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EVT

事件日志 (Microsoft Windows NT, 2000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EVY

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

.EWD

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

.EWL

Microsoft Encarta 文档 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EX3

设备驱动程序文件 (Harvard Graphics 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EXC

Optimize 的排除文件 (不处理, QEMM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EXC

Microsoft Word 排除字典文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EXC

源代码文件 (Rexx VM/CMS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EXE

可执行 <http://WhatIs.techtarget.com/definition/0,,sid9_gci212086,00.html> 文件 (程序) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EXP

已保存的聊天记录 (ICQ) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EXT

ASCII 二进制传输文件 (WS_FTP PRO) (IPSWITCH Software) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EXT2

第二扩展文件系统 (Linux) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EXT3

第三扩展文件系统 (Linux) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.EZP

压缩文件 (Edify.zip) (Edify Electronic Workforce Backup Utility) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.F

压缩文件存档 (FREEZE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.F

FORTRAN 文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.F01

传真文档 (Perfect Fax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.F06

Dos 屏幕文本字体 (高度= 6 像素) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.F07

Dos 屏幕文本字体 (高度= 7 像素) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.F08

Dos 屏幕文本字体 (高度= 8 像素) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.F09

Dos 屏幕文本字体 (高度= 9 像素) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.F10

Dos 屏幕文本字体 (高度= 10 像素) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.F11

Dos 屏幕文本字体 (高度= 11 像素) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.F12

Dos 屏幕文本字体 (高度= 12 像素) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.F13

Dos 屏幕文本字体 (高度= 13 像素) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.F14

Dos 屏幕文本字体 (高度= 14 像素) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.F15

Dos 屏幕文本字体 (高度= 15 像素) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.F16

Dos 屏幕文本字体 (高度= 16 像素) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.F2R

线性音乐模块 (Farandole) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.F3R

块状音乐模块 (Farandole) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.F77

源代码文件 (FORTRAN 77) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.F90

FORTRAN 文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.F96

传真文档 (Frecom FAX96) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FAC

面部图形 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FAQ

常见问题文档 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FAR

音乐模块 (MOD) (Farandole Composer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FAS

基本模块文件 (3-D Fassade Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FAV

导航栏 (Microsoft Outlook) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FAX

<http://searchNetworking.techtarget.com/sDefinition/0,,sid7_gci212098,00.html> From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FAX

类型图像 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FBK

备份 (Navison Financials) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FC

拼写检查字典文件 (Harvard Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FCD

虚拟 CD-ROM 文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FCM

二进制文件补丁 (Forward Compression) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FD

声明文件 (FORTRAN) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FD

编译器字段偏移量 (DataFlex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FDB

数据库 (Navison Financials) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FDF

表单文档 (Adobe Acrobat) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FDW

文档表单 (F3 Design and Mapping) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FEB

图形编辑器按钮栏 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FEM

CADRE 有限元网格 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FF

轮廓字体描述 (AGFA CompuGraphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FFA

MS 快速查找文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FFF

传真文档 (defFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FFF

GUS PnP 音色库文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FFL

图像文件 (PrintMaster Gold) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FFL

MS 快速查找文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FFO

MS 快速查找文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FFT

最终格式文本 (IBM DCA 的一部分) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FFX

MS 快速查找文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FH3

Aldus Freehand 3 绘图 (矢量图形) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FH4

Aldus Freehand 4 绘图 (矢量图形) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FI

文件接口 (FORTRAN) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FIF

分形 <http://WhatIs.techtarget.com/definition/0,,sid9_gci212149,00.html> 图像 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FIG

REND386/AVRIL 文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FIL

文件列表对象 (dBase Application Generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FIL

文件模板 (Application Generator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FIL

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

.FIN

打印格式化文本 (Perfect Writer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FIT

文件索引表 (Microsoft Windows NT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FIT

图形 (FITS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FITS

CCD 相机图像 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FITS

灵活图像传输系统文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FIX

补丁文件 (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FKY

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

.FLA

影片 (Macromedia Flash) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLB

格式库 (Papyrus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLC

FLIC 动画 (AutoDesk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLD

字段定义模块文件 (3-D Fassade Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLD

文件夹 (Charisma) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLF

已交付表单 (Corel Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLF

驱动程序 (OS/2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLF

许可证 (Navison Financials) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLI

FLIC 动画 (AutoDesk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLI

字体库 (EmTeX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLL

可分发动态链接库 (DLL) (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLM

胶卷 (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLO

FlowCharter 文件 (MicroGrafx) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLS

文件列表文档 (Farrukh Imposition Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLT

过滤器 (Corel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLT

过滤器 (Micrografx Picture Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLT

图形过滤器 (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLT

图形过滤器支持文件 (Asymetrix ToolBook) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLT

音乐模块 (MOD) (StarTrekker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLT

Open Flight 文件 (MulitGen) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FLX

已编译二进制文件 (DataFlex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FM

FrameMaker 文档 (Adobe) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FM

电子表格 (FileMaker Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FM1

电子表格 (Lotus 1-2-3, 版本 2.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FM3

设备驱动程序 (Harvard Graphics, 版本 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FM3

电子表格 (Lotus 1-2-3, 版本 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FMB

表单的二进制源代码,(Oracle, v4.x 及更高版本) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FMB

文件管理器按钮栏 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FMF

字体或图标 (IBM LinkWay) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FMK

MakeFile (FORTRAN PowerStation) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FML

镜像列表 (Oracle) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FMO

已编译格式 (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FMP

文档文件 (FileMaker Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FMT

屏幕格式文件 (Microsoft Visual FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FMT

打印文件 (Microsoft Schedule+) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FMT

样式表 (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FMT

表单文件的文本格式 (Oracle, v4.x 及更高版本) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FMX

可执行表单,(Oracle,v4.x 及更高版本) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FN3

字体 (Harvard Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FND

已保存的搜索 (查找小程序) (Microsoft Explorer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FNG

字体组 (Font Navigator) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FNK

模块 (FunkTracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FNT

字体 (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FNX

非活动字体 (Exact) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FO1

字体 (Borland Turbo C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FO2

字体 (Borland Turbo C) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FOG

Fontographer 字体 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FOL

已保存的消息文件夹 (1st Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FON

呼叫日志 (Procomm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FON

拨号目录 (Telix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FON

字体 (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FON

系统字体 (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FOR

表单 (WindowBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FOR

FORTRAN 源代码 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.forward

在 UNIX 系统中,用户可以将电子邮件地址放在其“.forward”文件中。这将导致发送到其帐户的所有电子邮件被转发到该电子邮件地址。此文件是攻击者的主要目标。如果他们可以覆盖此文件,他们可以巧妙地开始捕获用户的电子邮件。如果所讨论的帐户是 root 帐户,则尤其危险。请注意,用户不必了解有关此文件的任何信息,也不必在其系统上拥有该文件。入侵者仅仅创建此文件就会激活此功能。此外,由于此文件以“点”开头,因此通常对用户隐藏,因此他们甚至不会意识到此功能的存在。 From Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FOT

字体相关文件 (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FOT

已安装的 TrueType 字体 (Microsoft Windows Font Installer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FP

配置文件 (FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FP

FileMaker Pro 文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FP1

"Flying Pigs" 屏幕保护程序数据文件 (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FP3

FileMaker Pro v.3 & 4 文档文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FP5

文档文件 (FileMaker Pro v.5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FPC

目录文件 (FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FPT

FileMaker Pro 文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FPT

备注字段 (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FPW

楼层平面图 (FloorPlan Plus for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FPX

位图 (FlashPix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FR3

重命名的 dBaseIII+ 表单 (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FRF

字体 (FontMonger) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FRG

未编译的报表 (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FRK

Zip (压缩) 文件 (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FRM

文档 (FrameMaker 或 FrameBuilder) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FRM

可执行文件 (Oracle,v3.0 及更早版本) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FRM

表单 (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FRM

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

.FRM

合并表单 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FRM

符号报表 (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FRO

已编译的报表 (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FRP

表单 (PerForm PRO Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FRS

屏幕字体资源 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FRT

报表菜单 (FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FRX

表单暂存文件 (Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FRX

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

.FSF

fPrint 审核工具 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FSL

表单 (Paradox for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FSL

Paradox 7 表单 (Borderland) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FSL

已保存的表单 (Corel Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FSM

示例文件 (Farandoyle) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FST

可链接程序 (dBFast) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FSX

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

.FT

全文索引 (Lotus Notes) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FTB

索引文件 (Roots3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FTF

客户端访问数据规范文件 (AS/400) (客户端到服务器) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FTG

帮助系统全文搜索组文件 (Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FTM

字体 (MicroGrafx) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FTP

文件传输协议 (Internet Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FTS

帮助系统全文搜索索引 (Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FTW

文档文件 (Family Tree Maker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FW

数据库 (Framework II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FW2

数据库 (Framework II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FW3

数据库 (Framework III) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FW4

数据库 (Framework IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FWB

用于文件拆分配置的数据文件备份 (FileWrangler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FWS

用于文件拆分配置的数据文件 (FileWrangler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FX

在线指南 (FastLynx) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FXD

电话簿 (FAXit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FXP

已编译的源代码 (FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FXS

传真传输图形 (WinFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FZB

音色库转储文件 (Casio FZ-1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FZF

完整转储文件 (Casio FZ-1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.FZV

声音转储文件 (Casio FZ-1) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.G

数据图表 (APPLAUSE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.g3

G3 传真格式图像文件。 From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.G721

原始 CCITT G.721 //$bit ADPCM 数据 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.G723

原始 CCITT G.723 3 或 5 位 ADPCM 数据 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.G8

原始图形 (每个像素一字节) Plane III (PicLab) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GAL

相册 (Corel Multimedia Manager) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GAM

传真文档 (GammaFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GB

模拟器 ROM 映像文件 (Nintendo GameBoy) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GBC

彩色模拟器 ROM 镜像文件 (任天堂 GameBoy) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GBL

全局定义 (VAXTPU 编辑器) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GC1

Lisp 源代码 (Golden Common Lisp 1.1) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GC3

Lisp 源代码 (Golden Common Lisp 1.1) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GCD

通用 (TM) CADD 绘图 (后期版本) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GCP

图像处理文件 (地面控制点) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GDB

数据库文件 (InterBase) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GDF

字典文件 (GEOS) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GDM

铃声、口哨和声卡模块 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GED

家谱数据 (GEDCOM) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GED

图形环境文档 (绘图) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GED

图形编辑器文件 (EnerGraphics) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GED

图形编辑器原生格式 (Arts & Letters) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GEM

图元文件 (GEM) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GEM

矢量图形 (Ventura Publisher) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GEN

编译模板 (dBase Application Generator) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GEN

生成的文本 (Ventura Publisher) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GEO

Geode (Geoworks) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GetRight

未完成的下载 (GetRight) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GFB

压缩的 gif 图像 (GIFBLAST) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GFC

Patton&Patton Flowcharting 4 流程图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GFI

图形链接演示文稿 (Genigraphics) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GFT

字体 (NeoPaint) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GFX

Genigraphics 图形链接演示文稿 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GIB

图表 (Graph-in-the-Box) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GID

<http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci212189,00.html> Windows 95 全局索引 (包含帮助状态) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GIF

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

.gif, .giff

GIF 图像文件。 来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GIM

图形链接演示文稿 (Genigraphics) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GIW

演示文稿 (Windows 版 Graph-in-the-Box) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GIX

图形链接演示文稿 (Genigraphics) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GKH

Ensoniq EPS 系列磁盘镜像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GKS

GripKey 文档 (Gravis) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GL

动画文件 (GRASP 图形演示系统) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GLM

数据文件 (Glim) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GLS

数据文件 (Across) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GLY

词汇表 (Microsoft Word) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GMF

CGM 图形 (APPLAUSE) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GMP

瓦片地图 (Geomorph) (SPX) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GMR

图形监视器记录 (Schlafhorst Automation) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GNA

图形链接演示文稿 (Genigraphics) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GNO

家谱文档文件 (Genopro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GNT

生成的执行代码 (Micro Focus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GNX

图形链接演示文稿 (Genigraphics) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GOC

Goc 源代码 (Geoworks) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GOH

Goc 标头 (Geoworks) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GP

Geode 参数文件 (Geoworks Glue) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GPH

图表 (Lotus 1-2-3/G) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GPK

程序包 (Omnigo) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GPP

方格纸应用程序文件 (GraphPap) (生成方格纸) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GR2

屏幕驱动程序 (Microsoft Windows 3.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GRA

数据文件 (SigmaPlot) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GRA

图表 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GRB

Shell Monitor (MS-DOS v5.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GRD

图像处理网格 (CHIPS) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GRF

图表 (Charisma Graph Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GRF

Grapher (Golden Software) 图表 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GRP

图片组 (PixBase) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GRP

程序管理器组 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GRY

原始图形 (GREY) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GS1

演示文稿 (GraphShow) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GSD

矢量图形 (Professional Draw) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GSM

音频流原始 '字节对齐 (GSM 6.10 音频流) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GSM

音频流原始 GSM (6.10 音频流) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GSM

带标头的 GSM/QuickLink 文件 (US Robotics 语音调制解调器) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GSM

不带标头的 GSM/VoiceGuide/RapidComm 文件 (US Robotics 语音调制解调器) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GSP

草图板文件 (GeoMeter Sketch Pad) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GSP

Zip 文件 (Gnuzip) (允许输出到 html) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GSW

工作表 (GraphShow) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GT2

音乐模块 (Graoumftracker) (新) (MOD) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GTK

音乐模块 (Graoumftracker) (旧) (MOD) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GUP

数据 (PopMail) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GWP

Greetings WorkShop 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GWX

图形链接演示文稿 (Genigraphics) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GWZ

图形链接演示文稿 (Genigraphics) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GXL

图形库 (Genus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.GZ

压缩文件 (Unix gzip) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.gz

使用 gzip 压缩程序压缩的文件。 来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.h

C/C++ 程序头文件。 来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.H

程序头文件 (C) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.H!

在线帮助 (Flambeaux Help!) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.H++

头文件 (C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.H--

头文件 (Sphinx C--) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HA

压缩存档 (HA) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HAM

驱动程序文件 (Novell Netware) 来源: Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HAM

矢量图形保存文件 (Amiga) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HAP

压缩存档 (HA) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HBK

会计数据文件 (Humanic Software) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HBK

手册 (MathCad) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HCM

配置文件 (IBM HCM) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HCOM

Sound Tools 文件 (HCOM) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HCR

生产配置文件 (IBM HCD/HCM) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HDF

帮助文件 (帮助开发工具包) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HDF

国家超级计算应用中心 (NCSA) 地理空间分层数据 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HDL

备用下载列表 (ProComm Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HDR

数据库标头 (Pc-File+) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HDR

数据文件 (Egret) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HDR

消息标头文本 (1st Reader) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HDR

消息标头文本 (ProComm Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HDW

矢量图形 (Harvard Draw) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HDX

帮助索引 (AutoCAD) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HDX

帮助索引 (Zortech C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HED

文档 (HighEdit) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HEL

Hellbender 保存的游戏 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HEX

Macintosh BinHex <http://WhatIs.techtarget.com/definition/0,,sid9_gci211663,00.html> 2.0 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HFI

HP 字体信息 (GEM) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HGL

绘图文件 (HP Graphics Language) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HH

头文件 (C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HH

帮助系统映射 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HHH

预编译标头 (Power C) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HHP

远程用户的帮助信息 (ProComm Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HIT

音频文件 (HitPlayer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HLB

帮助库 (VAX) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HLP

帮助文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HLP

Windows 帮助文件 (DataCAD) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HMI

人机界面 MIDI 音乐文件 (Descent) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HMM

备用邮件读取选项菜单 (ProComm Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HMP

人机界面 MIDI 音乐文件 (Descent) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HNC

程序文件 (CNC) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HOG

Lucas Arts Dark Forces WAD <http://WhatIs.techtarget.com/definition/0,,sid9_gci213332,00.html> 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HOG

主数据包文件 (Descent3) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HOG

任务文件 (Descent 1-2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HOT

文档文件 (HotSend) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HP8

Ascii 文本 Roman8 字符集 (NewWave Write) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HPC

字体语言文件 (Hewlett-Packard) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HPF

HP LaserJet 字体 (Adobe Pagemaker) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HPF

部分下载文件 (HotLine) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HPG

HPGL 绘图仪矢量图形 (AutoCAD) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HPG

HPGL 绘图仪矢量图形 (Harvard Graphics) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HPI

字体信息 (GEM) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HPJ

帮助项目文件 (Visual Basic) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HPK

压缩存档 (HPACK) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HPM

特权用户的备用菜单 (ProComm Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HPM

Emm 文本 (HP NewWave) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HPP

头文件 (Zortech C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HPP

程序头文件 (C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HQX

BinHex (Macintosh 4.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HRF

光栅图形 (Hitachi) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HRM

有限用户的备用菜单 (ProComm Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HS2

单色图像 (Postering) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HSC

FM 合成音乐文件 (许多旧游戏使用,例如:FINTRIS, ROL) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HSI

图形 (Handmade Software, Inc.) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HST

历史文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HST

历史文件 (ProComm Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HT

HyperTerminal 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HTA

已被病毒用于更新系统注册表的 HTML 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HTM

网页 (包含超文本标记语言 - HTML - 标记的文件) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.htm, .html, .shtm, .html

超文本标记语言。某种网页。 来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HTML

<http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci212286,00.html> 网页 (包含超文本标记语言 - HTML - 标记的文件) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HTT

超文本模板 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HTX

模板 (扩展 HTML) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HWD

演示文稿 (Hollywood) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HWP

韩语文字处理器文档格式 (HanGul) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HXM

备用协议选择菜单 (ProComm Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HXM

HAM 扩展 (Descent2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HXX

头文件 (C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HY1

连字符算法 (Ventura Publisher) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HY2

连字符算法 (Ventura Publisher) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HYC

数据文件 (Windows 版 WordPerfect) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HYD

连字符字典 (Windows 版 WordPerfect) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HYM

3D 图像二进制文件 (Hymarc Scandata Scanner) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.HYP

压缩存档 (HYPER) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.I

中间文件 (Borland C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.i

SWIG 源代码,或 C 预处理器输出。 来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IAN

文本文件 (Sterling Software) (Groundworks COOL 业务团队模型) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IAX

位图 (IBM Image Acess eXecutive) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IBM

压缩存档 (ARCHDOS, 仅限 IBM 内部) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ICA

位图图形 (图像对象内容架构) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ICA

Citrix 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ICB

Targa 位图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ICC

目录文件 (IronClad) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ICC

打印机文件 (Kodak) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ICD

绘图文件 (IronClad) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ICL

图标库 (通用行业标准) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ICM

图像色彩匹配配置文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ICN

图标源代码 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ICO

图标 (Microsoft Windows 3.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ICS

场景文件 (IronClad) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ID

磁盘标识文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IDB

中间文件 (Microsoft Developer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IDD

MIDI <http://WhatIs.techtarget.com/definition/0,,sid9_gci212572,00.html> 乐器定义 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IDE

项目文件 (Borland C++ v4.5) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IDF

MIDI 乐器定义 (Windows 95 必需文件) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IDIF

标识文件 (Netscape 保存的地址簿) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IDQ

数据查询 (互联网) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IDW

矢量图形 (IntelliDraw) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IDX

索引文件 (Microsoft Clip Gallery v. 1.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IDX

索引文件 (Pro/Engineer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IDX

Microsoft Outlook Express 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IDX

关系数据库索引 (Microsoft FoxPro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IDX

关系数据库索引 (Symantec Q&A) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IFD

表单 (JetForm Design) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IFF

图像 (Sun TAAC/SDSC Image Tool) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IFF

交换文件,(通用数据存储格式)) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IFO

数字视频光盘 (DVD) 数据文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IFO

图形对象图层数据 (ImageForge Pro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IFP

脚本文件 (KnowledgeMan) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IFS

压缩的分形图像 (Yuvpak) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IFS

创建可执行库 (ImageForge/ImageForge Pro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IFS

系统文件 (OS/2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IGES

初始图形交换规范 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IGF

图元文件 (Inset Systems) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IIF

交换文件 (Windows 版 QuickBooks) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IIM

音乐模块 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ILB

数据文件 (Scream Tracker) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ILBM

位图 (图形图像) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ILK

程序轮廓 (Microsoft ILink 增量链接器) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IM8

光栅图形 (Sun Microsystems) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IMA

图像 (WinImage) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IMA

矢量图形 (EGO,Chart) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IMF

MIDI 音乐文件 (Corridor 7, Blake Stone, Wolfenstein 3D, Spear of Destiny) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IMG

位图图形 (Ventura Publisher) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IMG

图像 (GEM) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IMP

电子表格 (Lotus Improv) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IMQ

图像演示文稿 (ImageQ) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IMS

创建可执行库数据 (IconForge) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.in

配置输入文件。 来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IN$

安装文件 (HP NewWave) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IN3

输入设备驱动程序 (Harvard Graphics v3.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INB

测试脚本 (Vermont High Test) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.inbound

互联网电子邮件消息 (Microsoft Exchange Server v 5.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INC

包含文件 (汇编语言或 Active Server) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IND

索引 (dBase IV) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IND

共享数据库文件 (特别是在 Microsoft Windows 中) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Individual

Software MultiModule 屏幕保护程序 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INF

信息文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INF

安装脚本 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INF

Type I LaserJet 字体信息文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.info

使用 info 命令读取的信息页。 来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INI

Bank 设置文件 (Gravis UltraSound) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INI

初始化文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INI

设置文件 (MWave DSP 合成器的 mwsynth.ini GM) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INK

Pantone 参考色填充文件 (CorelDRAW) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INL

内联函数文件 (Microsoft Visual C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INP

表单的源代码,(Oracle,版本 3.0 及更早版本) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INRS

INRS-电信音频 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INS

数据文件 (Windows 版 WordPerfect) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INS

安装脚本 (InstallShield) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INS

安装脚本 (1st Reader) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INS

乐器文件 (Ensoniq EPS Family) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INS

乐器音乐文件 (Adlib) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INS

采样 (Cell/II MAC/PC instruments) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INS

注册文件 (X-Internet) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INT

接口单元 (Borland) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INT

中间可执行代码 (在源代码程序进行语法检查时生成) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.INX

索引文件 (Foxbase) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IO

压缩存档 (CPIO) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IOB

3D 图形数据库 (TDDD 格式) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IOC

组织结构图 (Instant ORGcharting!) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IOF

Findit 文档 (Microsoft Findit) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ION

文件描述 (4dos descript.ion) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IPL

Pantone 专色参考调色板 (CorelDRAW) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IPS

国际修补系统二进制补丁文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IQY

Internet 查询 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IRS

资源文件 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ISD

拼写检查器词典 (RapidFile) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ISH

压缩存档 (ISH) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ISO

<http://searchCIO.techtarget.com/sDefinition/0,,sid19_gci214046,00.html> 列出 CD-ROM 上的文件;基于 ISO 9660 CD-ROM 文件系统标准 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ISO

ISO (国际标准化组织表,又名:ISO) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ISP

注册文件 (X-Internet) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IST

乐器文件 (Digitaltracker) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ISU

卸载脚本 (InstallShield) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IT

音乐模块 (MOD) (Impulse Tracker) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IT

设置文件 (intalk) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ITF

接口文件 (JPI Pascal TopSpeed) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ITI

乐器文件 (Impulse Tracker) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ITS

Internet 文档集 (可能是 Microsoft 文件) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ITS

采样文件 (Impulse Tracker) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IV

Open Inventor 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IVD

微数据维度或变量级别文件 (Beyond 20/20) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IVP

用户子集配置文件 (Beyond 20/20) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IVT

表格或聚合数据 (Beyond 20/20) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IVX

微数据目录 (Beyond 20/20) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IW

演示流程图 (IconAuthor-HSC Interactive) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IW

屏幕保护程序 (Idlewild) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IWA

文本文件 (IBM Writing Assistant) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IWC

Install Watch 文档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IWM

启动文件 (IconAuthor) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IWP

文本文件 (Wang) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.IZT

二进制令牌文件 (IZT) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.J62

Ricoh 相机文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JAR

Java 存档 (用于小程序和相关文件的压缩文件) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JAS

图形 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JAVA

源代码 (Java) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JBD

数据文件 (SigmaScan) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JBF

图像浏览器文件 (Paint Shop Pro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JBX

项目文件 (Project Scheduler 4.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JFF

JPEG <http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci212425,00.html> 图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JFIF

JPEG <http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci212425,00.html> 图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JIF

JPEG <http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci212425,00.html> 图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JMP

探索图表到统计 (SAS JMP) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JN1

Jill of the Jungle 数据 (Epic MegaGames) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JNB

工作簿文件 (Sigma Plot 5) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JOB

通过转换 IMG 文件创建的矢量图形文件 (QuestVision) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JOR

日志 (Microsoft SQL Server) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JOU

日志备份 (VAX Edt editor) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JPC

图形 (Japan PIC) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JPE

JPEG <http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci212425,00.html> 图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JPEG

<http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci212425,00.html> 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JPEG

压缩位图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JPG

JPEG 位图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.jpg, .jpeg

JPEG 图像文件。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JS

JavaScript 源代码 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JSD

Jet Suite 文档 (eFAX) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JSP

包含对 Java servlet 引用的 HTML 页面 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JTF

位图图形 (JPEG Tagged Interchange Format) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JTF

传真文档 (Hayes JT Fax) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JTF

JPEG 位图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JTK

Java ToolKit 文件 (Sun Microsystems) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JW

文本文档 (JustWrite) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JWL

库 (JustWrite) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.JZZ

电子表格 (Jazz) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.K25

采样文件 (Kurzweil 2500) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KAR

MIDI 文件 (文本+MIDI) (卡拉 OK) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KB

键盘脚本 (Borland C++ 4.5) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KB

程序源代码 (Knowledge Pro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KBD

键盘映射脚本 (Procomm Plus, LocoScript, Signature) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KBM

键盘映射脚本 (Reflection 4.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KCL

Lisp 源代码 (Kyoto Common Lisp) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KDC

图像 (Kodak Photo-Enhancer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KEX

宏 (KEDIT) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KEY

数据文件 (Forecast Pro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KEY

图标工具栏 (DataCAD) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KEY

键盘宏 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KEY

安全文件 (例如软件注册号) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KFX

图像 (KoFax Group 4) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KIZ

数字明信片 (Kodak) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KKW

包含 RoboHELP Help 项目索引设计器中未与主题关联的所有 K 关键字 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KMP

KeyMaP (Korg Trinity) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KPP

工具面板 (SmartPad) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KPS

位图图形 (IBM KIPS) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KQP

原生相机文件 (Konica) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KR1

采样 (多软盘) 文件 (Kurzweil 2000) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KRZ

采样文件 (Kurzweil 2000) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KSF

采样文件 (Korg Trinity) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KYB

键盘映射 (FTP) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.KYE

游戏数据 (Kye) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.L

链接器指令文件 (WATCOM wlink) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.L

源代码 (Lex) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.L

源代码 (Lisp) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LAB

数据文件 (NCSS-SOLO) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LAB

标签文件 (Visual dBase) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LAB

邮件标签 (Microsoft Excel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LAN

可加载模块 (LAN DLL) (NetWare) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LAY

剪贴画文件 (Printmaster Gold) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LAY

Word Chart 布局 (APPLAUSE) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LBG

标签生成器数据 (dBase IV) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LBL

标签 (Clipper 5) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LBL

标签 (dBase IV) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LBL

标签 (dBFast) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LBM

位图 (DeluxePaint) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LBM

线性位图图形 (XLib) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LBO

编译标签 (dBase IV) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LBR

压缩存档 (LU) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LBR

显示驱动程序 (Lotus 1-2-3) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LBT

标签 (Microsoft FoxPro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LBX

标签 (Microsoft FoxPro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LCF

链接器控制文件 (Norton Guides compiler) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LCH

在程序 (未知) 中使用,该程序监视网络的响应时间 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LCK

锁定文件 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LCL

数据文件 (FTP) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LCN

Lection 文档 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LCS

数据历史文件 (ACT!) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LCW

电子表格 (Lucid 3-D) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LD

长途区号文件 (Telix) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LD1

覆盖文件 (dBase) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LDB

锁定文件 (Microsoft Access) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LDF

库定义文件 (Geoworks Glue) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LDIF

用于在电子邮件客户端 (Microsoft、Netscape 和其他) 之间共享信息的结构化文本文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LDL

库 (Corel Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LEG

旧文档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LES

系统游戏配置文件 (与 REG 文件相同) (Logitec Entertainment) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LEV

关卡文件 (NetHack 3.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LEX

词典文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LFD

数据资源文件 (LucasArts Dark Forces) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LFP

LaserForms Plus 文件 (Evergreen) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LFT

激光打印机字体 (ChiWriter) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LFT

Loft 文件 (3-D Studios) (DOS) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LG

Logo 过程定义 (LSRHS Logo) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LGC

应用程序日志文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LGD

应用程序日志文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LGO

页眉和页脚徽标 (SuperFax) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LGO

徽标文件 (PaintBrush) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LGO

启动徽标 (Microsoft Windows 3.x-9.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LHA

LZH 的备用文件后缀 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LHA

压缩存档 (LHA/LHARC) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LHW

压缩 Amiga 存档 (LHWARP) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LIB

库文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LIF

压缩存档 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LIF

逻辑交换数据 (Hewlett-Packard) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LIM

压缩存档 (LIMIT) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LIN

交互式音乐序列数据文件 (Electronic Arts) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LIN

线型文件 (DataCad) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LIS

列表 (VAX) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LIS

结构化查询报表 (SQR) 程序生成的输出文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LIX

Logos 库系统文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.lj

LaserJet 文件。适用于 HP LaserJet 打印机的输入。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LJ

文本文件 (Hewlett-Packard LaseJet II 打印机) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LK

数据库文件 (OpenSight-16 bit) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LKO

链接对象 (Microsoft Outlook Express 垃圾邮件文件) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LL3

文档文件 (LapLink III) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LLX

交换代理 (Laplink) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LNK

数据文件 (Revelation) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LNK

链接器响应文件 (RTLink) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LNK

快捷方式文件 (Microsoft Windows 9.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LOD

加载文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LOG

日志文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.log

系统服务的日志文件。此文件随某些系统程序的状态消息增长。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LOK

压缩文件 (FileWrangler) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LP

用于下载抵押贷款结束信息的文档阅读器 (DesertDocs) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LPC

打印机驱动程序 (TEKO) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LPD

Helix Nuts and Bolts 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LPI

激光打印机的信息文件 (某些扫描软件常用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LRC

视频电话文件 (Intel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LRF

链接器响应文件 (Microsoft C/C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LRS

语言资源文件 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LSF

Logos 库系统文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LSL

已保存库 (Corel Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LSL

脚本库 (Lotus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.lsm

LINUX 软件地图条目。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LSP

AutoLISP、CommonLISP 和其他 LISP 语言文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LSS

电子表格 (Legato) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LST

键盘宏 (1st Reader) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LST

列表文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LST

假脱机文件 (Oracle) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LTM

表单 (Lotus Forms) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LU

库单元文件 (ThoughtWing) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LVL

Miner Descent/D2 关卡扩展 (Parallax Software) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LWD

文本文档 (LotusWorks) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LWF

小波图形文件 (Luratech) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LWLO

分层对象文件 (Lightwave) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LWOB

对象文件 (Lightwave) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LWP

Wordpro 96/97 文件 (Lotus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LWSC

场景文件 (Lightwave) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LWZ

语言增强型声音文件 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LYR

图层文件 (DataCAD) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.lyx

LyX 文字处理器文档。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LZD

二进制文件的差异文件 (Ldiff 1.20) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LZH

压缩存档 (LH ARC) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LZS

压缩存档 (LARC) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LZS

数据文件 (Skyroads) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LZW

压缩 Amiga 存档 (LHWARP) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.LZX

压缩存档 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.M

宏模块 (Brief) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.M

程序文件 (Matlab) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.M

标准包 (Mathematica) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.M11

文本文件 (MASS11) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.M1V

MPEG 相关文件 (MIME 类型 'mpeg') 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.M3

源代码文件 (Modula 3) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.M3D

3D 动画 (Corel Motion) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.M3U

MPEG URL (MIME 音频文件) (MP3 播放列表) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.M4

M4 预处理器文件 (Unix) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MA3

宏 (Harvard Graphics 3.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAC

图像 (MacPaint) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAC

宏 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAD

模块 (Microsoft Access) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAF

窗体 (Microsoft Access) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAG

在一些日语文件中找到的图形格式 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAG

由 Woody Lynn (MPS Magro Paint System) 创建的 MAG 图形格式 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAGIC

配置文件 (Magic Mail Monitor) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAI

邮件 (VAX) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAK

Makefile (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAK

项目 (Visual Basic 或 Microsoft C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAM

宏 (Microsoft Access) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAN

命令模块 (Unix) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.man

手册页。 来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAN

手册页输出 (Unix) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAP

调色板 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAP

格式化数据 (Micrografx Picture Publisher) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAP

链接器映射文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAP

映射文件 (Atlas MapMaker) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAP

映射文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAP

用于颜色选择的映射文件 (Pro/Engineer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAP

网络映射 (AccView) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAP

WAD 游戏文件 (Duke Nukem 3D) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAQ

查询 (Microsoft Access) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAR

汇编程序 (VAX Macro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAR

报表 (Microsoft Access) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAS

图形文件 (Lotus Freelance Smartmaster) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAT

二进制文件 (Matlab) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAT

表 (Microsoft Access) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAUD

采样格式 (Maud) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAX

3D 场景 (Kinetix 3D Studio Max) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAX

文档 (Paperport) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAX

布局文件 (OrCad) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAX

源代码 (MAX) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAZ

Division's dVS/dVISE 使用的格式 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MAZ

迷宫数据文件 (Hover) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MB

数据库的备注字段值 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MB1

数据文件 (Apogee Monster Bash) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MBK

多重索引归档 (dBase IV) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MBOX

邮箱文件 (Berkeley Unix) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MBX

Microsoft Outlook 添加到已保存电子邮件和 Eudora 邮箱的扩展名 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MCC

呼叫卡 (Dialer10) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MCC

配置文件 (MathCad) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MCD

文档 (MathCad) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MCF

字体文件 (MathCad) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MCF

Magic 控制文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MCI

命令脚本 (媒体控制接口) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MCP

应用程序脚本 (Capsule) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MCP

打印机驱动程序 (MathCad) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MCP

项目文件 (Metrowerks CodeWarrior) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MCR

键盘宏文件 (DataCad) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MCW

文档 (Microsoft Word for Macintosh) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MCW

文本文件 (MacWrite II) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MD

压缩归档 (MDCD) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MDA

加载项文件 (Microsoft Access) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MDA

工作组 (Microsoft Access version 2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MDB

数据库 (Microsoft Access) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MDE

MDE 文件 (Microsoft Access) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MDL

模型 (3D Design Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MDL

模型文件 (Quake) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MDL

模型文件元素 (Rational Rose) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MDL

音乐模块 (MOD) (Digital Trakker) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MDL

电子表格 (CA-Compete!) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MDM

调制解调器定义 (Telix) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MDN

空白数据库模板 (Microsoft Access) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MDT

加载项文件 (数据) (Microsoft Access) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MDT

数据表 (Microsoft ILink 增量链接器) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MDW

工作组 (Microsoft Access) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MDX

多重索引文件 (dBase IV) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MDZ

向导模板 (Microsoft Access) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ME

ASCII 文本文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MEB

宏编辑器底部溢出库 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MED

宏编辑器删除保存文件 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MED

音乐模块 (MOD) (OctaMed Music Editor) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MEM

宏编辑器宏 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MEM

内存变量保存文件 (Clipper) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MEM

内存变量保存文件 (dBase IV) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MEM

内存变量保存文件 (Microsoft FoxPro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MEQ

宏编辑器打印队列文件 (WordPerfect for Windows Library) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MER

用于交换电子表格/数据库数据的格式;被 Filemaker、Excel 和其他软件识别 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MER

宏编辑器常驻区域 (WordPerfect for Windows Library) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MES

宏编辑器工作区文件 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MES

消息文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MET

文档文件 (OmniPage Pro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MET

宏编辑器顶部溢出文件 (WordPerfect for Windows Library) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MET

Presentation Manager 元文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MEU

菜单组 (DOS Shell) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MEX

可执行命令 (Matlab) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MEX

宏编辑器详细文件 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.mf

Meta-Font 字体程序源文件。 来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MF

Metafont 文本文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MFG

制造文件 (Pro/ENGINEER) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MGF

材料和几何格式文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MGF

字体文件 (MicroGrafx) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MHT

MHTML 文档 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MHTM

MHTML 文档 (MIME) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MHTML

MHTML 文档 (MIME) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MI

数据文件 (Cocreate ME10) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MI

杂项文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MIC

图像合成器文件 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MID

MIDI 音乐 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MIF

交换格式 (Adobe FramMaker) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MIFF

机器无关文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MII

数据文件 (MicroStat-II) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MIM

多用途互联网邮件扩展 (MIME ) 格式的多部分文件;通常是在 AOL 中发送带附件的电子邮件的结果而创建的。多部分 MIM 文件中的文件可以使用 Winzip 或类似的程序“打开”(解压缩并分离为单独的文件)。 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MIME

来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MIX

目标文件 (Power C) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MIX

包文件 (命令与征服) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MIX

图片文件 (Microsoft PhotoDraw 2000) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MIX

图片文件 (Microsoft Picture-It!) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MIX

资源归档 (Westwood Studios) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MJF

类似于 MP3 的音频文件 (Mjuice)(用 WinAmp 打开) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MK

Makefile (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MKE

Makefile (Microsoft Windows SDK) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MKI

图形图像 (MagView 5.0) (日语) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MKS

数据文件 (TACT) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ML3

项目文件 (Milestones 3.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MLB

宏库 (Symphony) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MLI

3D Studio Material-Library 格式的文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MLID

多链路接口驱动程序文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MLM

Groupwise 电子邮件文件 (Novell Groupwise) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MM

文本文件 (MultiMate Advantage II) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MMC

目录文件 (Microsoft Clip Gallery 5.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MME

多用途互联网邮件扩展 (MIME ) 格式的多部分文件;通常是在 AOL 中发送带附件的电子邮件的结果而创建的。多部分 MME 文件中的文件可以使用 Winzip 或类似的程序“打开”(解压缩并分离为单独的文件)。 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MMF

邮件文件 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MMF

邮件消息文件 (Microsoft Mail) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MMF

Meal Master 格式,一种食谱编目格式 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MMG

Beyond 20/20 表格或聚合数据文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MML

批量邮件文件 (由 MyMailList 创建) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MMM

多媒体电影 (MacroMind Director 3.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MMM

多媒体电影 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MMO

备忘录编写器文件 (RapidFile) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MMP

MindManager 文件 (MindMapor) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MMP

输出视频 (Bravado) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MN2

任务文件 (Descent2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MN3

任务文件 (Descent3) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MND

菜单源文件 (AutoCAD 菜单编译器) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MND,

MNI Mandelbrot for Windows 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MNG

地图 (DeLorme Map'n'Go) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MNG

多图像网络图形 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MNT

菜单文件 (Microsoft FoxPro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MNU

高级宏 (HP NewWave) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MNU

交互菜单 (Intertal Systems) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MNU

菜单 (AutoCAD 菜单编译器) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MNU

菜单 (Norton Commander) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MNU

菜单文件 (Visual dBase) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MNX

编译菜单 (AutoCAD) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MNX

菜单 (Microsoft FoxPro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MNY

账簿 (Microsoft Money) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MOB

设备定义 (PEN for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MOD

Amiga/PC 跟踪器模块 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MOD

FastTracker、StarTrekker、Noise Tracker(等)音乐模块文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MOD

内核模块 (Microsoft Windows 9.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MOD

Modula-2 源代码文件 (Clarion Modula-2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MOD

电子表格 (Microsoft Multiplan) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MON

监视器描述 (ReadMail) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MOV

电影 (AutoCAD/AutoFlix) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MOV

电影 (QuickTime for Microsoft Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MOZ

压缩的 mod 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MP2

MPEG 音频层 2 文件 (MIME 视频文件) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MP2

MPEG 音频层 2 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MP3

MPEG 音频层 3 (AC3) 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MP3

MPEG 音频层 3 (AC3) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MPA

MPEG 相关文件 (MIME 类型 'mpeg') 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MPC

日历文件 (Microsoft Project) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MPD

数据库文件 (Microsoft Project) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MPE

MPEG 动画 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MPEG

来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MPEG

动画 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MPG

MPEG 动画 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MPM

Mathplan 宏库 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MPP

绘图文件 (CAD) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MPP

项目文件 (Microsoft Project) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MPR

菜单 (已编译) (Microsoft FoxPro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MPT

位图图形 (多页 TIFF) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MPV

视图文件 (Microsoft Project) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MPX

编译菜单程序 (Microsoft FoxPro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MPX

用于导出数据的交换文件 (Microsoft Project) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MRB

多分辨率位图图形 (Microsoft C/C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MRI

MRI 扫描 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MRS

宏资源文件 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MSA

归档 (Magic Shadow) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MSC

通用控制台文档 (Microsoft Windows 2000) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MSC

Makefile (Microsoft C) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MSD

诊断报告文件 (Microsoft MSD) (诊断) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MSDL

场景描述语言 (Manchester) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MSG

邮件消息 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MSI

安装程序包 (Microsoft Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MSN

任务文件 (Descent) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MSN

网络文档 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MSP

绘图位图 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MSP

Windows Installer 补丁文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MSS

手稿文本文件 (Jove) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MSS

手稿文本文件 (MINCE) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MSS

手稿文本文件 (Perfect Writer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MSS

手稿文本文件 (Scribble) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MST

小规格文件 (Prosa) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MST

安装脚本 (Microsoft SDK) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MST

Windows Installer 转换 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MSW

文本文件 (Microsoft Word) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MSX

压缩的 CP/M 归档 (MSX) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MTH

数学文件 (Derive) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MTM

音乐模块 (MOD) (Multitracker) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MTW

数据文件 (Minitab) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MTX

Twain 设备驱动程序 (32 位) (UMax) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MU

菜单 (Quattro Pro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MUL

名为 Ultima Online 的在线游戏 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MUS

交互式音乐音频数据文件 (Electronic Arts) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MUS

音乐 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MUS

音乐 (MusicTime) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MUS10

音频 (Mus10) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MV

服务器端脚本文件 (Miva) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MVA

视频加速器文件 (Matrox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MVB

多媒体查看器文件 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MVC

图像文件 (Sony Digital Mavica) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MVE

Interplay 视频文件 (Descent2, Fallout2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MVF

停止帧文件 (AutoCAD-AutoFlix) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MVI

电影命令文件 (AutoCAD-AutoFlix) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MVW

日志文件 (Saber LAN) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MWF

动画 (ProMotion) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MWP

Smartmaster 文件 (Lotus WordPro 97) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MXD

地图文件 (ArcInfo) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MXT

数据文件 (Microsoft C) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.MYP

演示文稿文件 (Make Your Point) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.M_U

硬盘驱动器引导扇区备份 (MazeGold) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NAN

Nanoscope 文件 (Raw Grayscale) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NAP

元文件 (NAP) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NAP

视频文件 (EnerGraphics) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NB

文本文件 (Nota Bene) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NC

数控机床指令 (CAMS) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NCB

Developer Studio 文件 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NCC

CNC (计算机数控) 文件 (CamView 3D) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NCD

更改目录 (Norton) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NCF

命令文件 (Netware) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NCF

内部剪贴板 (Lotus Notes) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NDB

网络数据库 (Intellicom) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NDO

3D 低多边形建模器 (Nendo) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NDX

数据库文件 (1ACT! for Microsoft Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NDX

索引文件 (Cindex) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NDX

索引文件 (dBase II-III-IV) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NEO

光栅图形 (Atari Neochrome) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NES

游戏机模拟器 ROMS (Nintendo) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NET

网络列表输出文件 (Orcad Schematic Capture) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NET

网络配置文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.netCDF

网络通用数据格式 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NEW

新信息 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NEZ

用于游戏机的模拟器文件 (NES) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NFF

中性文件格式 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NFO

信息文件数据库文本 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NFO

信息库文件 (Folio) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NFT

模板文件 (Netobject Fusion) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NG

在线文档数据库 (Norton Guide) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NIL

图标库文件 (与 EasyIcons 兼容) (Norton) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NIST

音频 (NIST Sphere) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NLB

数据 (Oracle 7) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NLM

可加载模块 (Netware) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NLS

用于本地化的国家语言支持文件 <http://searchCIO.techtarget.com/sDefinition/0,,sid19_gci212496,00.html> (例如,由 Uniscape <http://www.uniscape.com/index.shtml>) 使用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NLU

电子邮件触发文件 (Norton LiveUpdate) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NLX

表单 (FormWorx 3.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NOD

文件 (Netobject Fusion) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NP

项目计划 (Nokia Planner) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NP

项目计划 (Visual Planner 3.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NPI

解释器源文件 (dBase Application Generator) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NRF

数据文件 (NICOLET) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NRG

镜像文件 (Nero) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NS2

数据库 (Lotus Notes version 2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NS3

数据库 (Lotus Notes version 3) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NS4

数据库 (Lotus Notes version 4) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NSF

数据库 (Lotus Notes) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NSO

文档文件 (NetObject Fusion) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NST

音乐模块 (MOD) (Noise Tracker) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NT

启动文件 (Microsoft Windows NT) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NTF

数据库模板 (Lotus Notes) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NTR

可执行 ASCII 文本文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NTS

可执行 ASCII 文本文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NTS

教程 (Norton) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NTX

索引文件 (CA-Clipper) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NUF

新用户消息 (首次呼叫) (Procomm Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NWC

歌曲文件 (Noteworthy Composer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NWS

新闻消息 (MIME RFC822) (Microsoft Outlook Express) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.NXT

声音文件 (NeXT) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.O

目标文件 (Atari) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.O

目标文件 (GCC) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.O

目标文件 (Unix) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.O$$

输出文件 (Sprint) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OAS

字处理器文档 (富士通 OAS)(日语) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OAZ

传真 (NetFax Manager) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OB

对象剪切/粘贴文件 (IBM LinkWay) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OBD

活页夹 (Microsoft Office) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OBD

活页夹模板 (Microsoft Office) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OBJ

目标文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OBR

对象浏览器数据文件 (Borland C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OBS

脚本 (ObjectScript) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OBV

可视化界面 (ObjectScript) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OBZ

活页夹向导 (Microsoft Office) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OCF

对象工艺文件 (Object Craft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OCR

转录的传真到文本文件 (FAXGrabber) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ODL

类型库源文件 (Visual C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ODS

邮箱文件 (Microsoft Outlook Express) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OFD

表单定义 (ObjectView) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OFF

对象文件 (3D 网格) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OFN

FileNew 文件 (Microsoft Office) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OFT

模板 (Microsoft Outlook) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OKR

Feldeinteilung 模块文件 (3-D Fassade Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OKT

音乐模块 (MOD) (Oktalyzer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OLB

对象库 (OLE) (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OLB

对象库 (VAX) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OLD

备份文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OLE

<http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci214126,00.html> 对象链接和嵌入 (OLE) 自定义控件 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OLE

<http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci214126,00.html> OLE 对象 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OLI

文本文件 (Olivetti) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OO1

语音文件 (Typhoon) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OOGL

面向对象图形库 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OOM

交换文件 (Shroom) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OPJ

项目文件 (Orcad Schematic Capture) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OPL

Organiser 编程语言源文件 (Psion/Symbian) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OPN

活动选项 (Exact) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OPO

输出可执行文件 (OPL) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OPT

Developer Studio 文件 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OPT

优化支持文件 (QEMM) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OPW

组织结构图 (Org Plus for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OPX

扩展 DLL (OPL) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OPX

非活动选项 (Exact) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OR2

日历文件 (Lotus Organizer 2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OR3

Lotus Organizer 97 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ORA

配置文件 (Oracle 7) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ORA

参数文件 (Oracle) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ORC

脚本 (Oracle 7) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ORG

日历文件 (Lotus Organizer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OSS

搜索文件 (Microsoft Office) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OST

脱机文件 (Microsoft Exchange/Outlook) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OTL

轮廓字体描述 (Z-Soft Type Foundry) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OTL

模板文件 (PrintMaster Gold) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OTL

模板文件 (Super NoteTab) (Fookes) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OTX

文本文件 (Olivetti Olitext Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OUT

输出文件 (Microsoft C) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OV

数据库文件 (Revelation-DOS) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OV1

覆盖文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OV2

覆盖文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OVD

数据文件 (ObjectVision) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OVL

覆盖文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.OVR

覆盖文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.P

应用程序参数文件 (ReaGeniX 代码生成器) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.P

图片文件 (APPLAUSE) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.P

源代码 (Pascal) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.P10

Plot 10 绘图 (Tektronics) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.P16

16 声道音乐文件 (ProTracker 16) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.P22

补丁文件 (Patch 22) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.P3

项目计划文件 (Primavera) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.P65

文档文件 (PageMaker 6.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.P7C

数字 ID 文件 (MIME) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PA1

工作台 (PageAhead) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PAB

个人地址簿 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PAC

图像 (Stad) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PAC

包文件 (Sound Blaster Studio II) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PAD

键盘定义 (Telemate) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PAK

压缩存档 (PAK) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PAK

WAD <http://WhatIs.techtarget.com/definition/0,,sid9_gci213332,00.html> 文件 (Quake) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PAL

压缩文件 (Generic) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PAL

调色板 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PAN

打印机特定文件 (CorelDRAW) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PAQ

密码加密的 zip 文件 (Hewlett-Packard) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PAR

参数文件 (Fractint) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PAR

Parts 应用程序 (Digitalk PARTS) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PAR

永久输出文件 (Microsoft Windows 3.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PAS

源代码文件 (Borland Pascal) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PAT

用于 Warcraft2 的 exePatch 实用程序 (WarHack) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PAT

阴影线图案文件 (DataCAD) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PAT

补丁文件 (Advanced Gravis Ultrasound/Forte Technologies) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PAT

图案文件 (CorelDRAW) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.pattern

颜色 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PB

传真 (FAXability Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PB

电话簿 (WinFax Pro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PB

安装文件 (PixBase) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PB1

文档 (First Publisher for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PBA

源代码文件 (Powerbasic BASIC) (Genus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PBD

动态库,是本地 <http://searchVB.techtarget.com/sDefinition/0,,sid8_gci212624,00.html> DLL <http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci213902,00.html> 的替代方案 (PowerBuilder) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PBD

电话簿 (FaxNOW!-Faxit) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PBF

Turtle Beach Pinnacle Bank 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PBI

包含文件 (PowerBasic) (Genus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PBI

Profiler 二进制输入文件 (Microsoft Source Profiler) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PBK

Microsoft 电话簿 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PBL

开发环境中使用的库文件 (PowerBuilder) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PBL

PowerBasic 库 (Genus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.pbm

PBM 图像文件格式。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PBM

平面位图图形 (XLib) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PBM

便携式位图图形 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PBO

Profiler 二进制输出 (Microsoft Source Profiler) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PBR

资源文件 (PowerBuilder) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PBT

Profiler 二进制表 (Microsoft Source Profiler) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PC

文本文件 (IBM) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PC3

自定义调色板 (Harvard Graphics 3.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PC8

Ascii 文本 IBM8 字符集 (NewWave Write) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCB

应用程序数据文件 (Microsoft Powerpoint) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCC

剪切图片矢量图形 (PC Paintbrush) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCD

图像 (柯达 Photo-CD) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCD

P-Code 编译的测试脚本,如 Microsoft Test 和 Microsoft Visual Test 中的脚本 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCE

将 Eudora 邮箱名称映射到 DOS 文件名 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.pcf

PCF 图像文件 - 字体的中间表示。X Window 系统字体。 From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCF

分析器命令文件 (Microsoft Source Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCH

补丁文件 (Generic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCH

预编译头文件 (Microsoft C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCI

PCI Miniport 文件 (Microsoft Windows 系统文件) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCJ

多媒体创作工具图形 (IBM Linkaway-Live) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCK

Pickfile (Turbo Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCL

<http://WhatIs.techtarget.com/definition/0,,sid9_gci214283,00.html> From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCM

音频文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCM

PCM 文件 (OKI MSM6376 合成器芯片) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCP

Live Update Pro 文件 (Symantec) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCS

动画 (PICS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCS

图片存储文件 (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCT

PICT 绘图 (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCW

文本文件 (PC Write) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PCX

PC Paintbrush 位图 (ZSoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.pcx

PCX 图像文件。 From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDA

位图图形 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDB

数据文件 (TACT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDB

数据库文件 (3Com PalmPilot) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDB

物理模型备份文件 (PowerDesigner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDD

可以使用 Paint Shop Pro 和 Adobe PhotoDeluxe 打开的图形图像 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDF

<http://searchMobileComputing.techtarget.com/sDefinition/0,,sid40_gci214288,00.html> 便携式文档文件 (Adobe Acrobat) (可以使用 Web 浏览器显示) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDF

定义文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.pdf

格式化文档,类似于 PostScript 或 dvi。 From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDF

图形文件 (ED-SCAN 24bit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDF

打印机定义文件 (Netware) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDL

项目描述语言文件 (Borland C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDM

物理模型文件 (PowerDesigner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDP

Print Shop Deluxe 文件 (Broderbund) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDQ

流程图 PDQ Lite 文件 (Patton&Patton) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDS

硬件汇编源代码文件 (Pldasm) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDS

摄影图像文件 (来源尚未确定) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDT

数据库文件 (ProCite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDV

打印机驱动程序 (Paintbrush) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDW

文档 (Professional Draw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PDX

数据库索引文件 (ProCite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PE3

图像存档文件 (QuickViewer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PE3

图像存档文件 (Ulead PhotoImpact) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PE4

图像存档文件 (Ulead PhotoImpact v.4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PEB

程序编辑器底部溢出文件 (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PED

程序编辑器删除保存文件 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PEM

程序编辑器宏 (WordPerfect for Windows library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PEQ

程序编辑器打印队列文件 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PER

程序编辑器常驻区域文件 (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PES

程序编辑器工作区文件 (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PET

程序编辑器顶部溢出文件 (WordPerfect for Windows Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PF

加密文件 (Alladin Systems) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PFA

Type 3 字体 (ASCII) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PFB

Type 1 字体 (二进制) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.pfb

X Window 系统字体文件。 From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PFC

个人文件柜文件 (AOL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PFC

PF 组件文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PFC

文本文件 (First Choice) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PFF

用于 3D 建模的 Paraform 文件 (Scandata) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PFK

可编程功能键 (XTreePro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PFM

打印机字体度量 (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PFS

数据库文本文件 (PFS:Write) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PFT

打印机字体 (ChiWriter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PG

页面剪切/粘贴文件 (IBM LinkWay) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PGI

打印机图形文件设备驱动程序 (PGRAPH Library) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PGL

绘图仪绘图 (Hewlett-Packard) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PGM

便携式灰度图 (位图) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PGM

程序文件 (Signature) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PGN

便携式游戏表示法文件 (ChessMaster 和其他) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PGP

PGP 加密文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PGS

手册页 (man4dos) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PH

优化的 .goh 文件 (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PH

Perl 头文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PH

短语表 (Microsoft C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PH

由 Microsoft Help Compiler 生成的临时文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PHN

电话列表 (QmodemPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PHN

电话列表 (UltraFax) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PHO

电话数据库 (Metz Phone for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PHP

<http://searchEnterpriseLinux.techtarget.com/sDefinition/0,,sid39_gci334246,00.html> 包含 PHP <http://searchEnterpriseLinux.techtarget.com/sDefinition/0,,sid39_gci334246,00.html> 脚本的 HTML 页面 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.php

PHP 程序源代码 (用于网页设计)。 From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PHP3

HTML 页面,包含 PHP <http://searchEnterpriseLinux.techtarget.com/sDefinition/0,,sid39_gci334246,00.html> 脚本 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PHR

短语 (LocoScript) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PHTML

HTML 页面,包含 PHP <http://searchEnterpriseLinux.techtarget.com/sDefinition/0,,sid39_gci334246,00.html> 脚本 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PHTML

perl <http://searchEnterpriseLinux.techtarget.com/sDefinition/0,,sid39_gci214291,00.html>-解析的 HTML From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PI1

低分辨率图片文件 (Dages Elite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PI2

中分辨率图片文件 (Dages Elite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PI3

高分辨率图片文件 (Dages Elite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PIC

3D 图像文件 (SoftImage) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PIC

位图 (PC Paint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PIC

PICT 绘图 (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PIC

图片文件 (Lotus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PIC

Pixar 图片文件 (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PICT

PICT 图像文件 (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PIF

压缩存档 (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PIF

PIF 绘图 (IBM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PIF

程序信息文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PIF

矢量图形 GDF 文件 (IBM Mainframe) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PIG

WAD 文件 (Lucas Arts Dark Forces <http://WhatIs.techtarget.com/definition/0,,sid9_gci213332,00.html>) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PIN

数据文件 (Epic Pinball) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PIN

数据文件 (Epic Pinball) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PIX

Alias 图像文件 (SDSC Image Tool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PIX

位图 (Inset Systems) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PJ

项目文件 (CA-SuperProject) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PJ

源代码完整性文件 (MKS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PJT

Visual FoxPro 备注文件 (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PJT

Visual Foxpro 项目 (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PJX

Visual FoxPro 项目文件 (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PK

打包的位图字体文件 (TeX DVI) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PKA

压缩文件存档 (PKARC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PKG

Developer Studio 应用程序扩展 (类似于 DLL 文件) (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PKG

安装程序脚本 (NEXT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PKR

公钥环 (PGP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PKT

数据包文件 (Fidonet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PL

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

.PL

调色板 (Harvard Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.pl

Perl 或 Prolog 程序源代码。 From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PL

属性列表字体度量文件 (TeX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PL

源代码文件 (Perl) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PL

源代码文件 (Prolog) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PL1

房间平面图 (3D Home Architect) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PL3

图表调色板 (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PLB

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

.PLC

加载项文件 (Lotus 1-2-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PLG

REND386/AVRIL 使用的格式 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PLI

数据描述文件 (Oracle 7) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PLL

预链接库文件 (Clipper 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PLM

模块 (DisorderTracker2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PLN

电子表格 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PLR

飞行员文件 (Descent 1-3) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PLS

MPEG 播放列表文件 (由 WinAmp 使用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PLS

样本文件 (DisorderTracker2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PLT

绘图 (HPGL 绘图仪) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PLT

调色板 (通用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PLT

绘图 (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PLT

预链接传输文件 (Clipper 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PLT

标牌制作软件 (Gerber Optical) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PLY

数据文件 (PopMail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PLY

演示屏幕 (Harvard Spotlight) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PM

位图图形 (Presentation Manager) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PM

模块 (Perl) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PM3

文档 (PageMaker 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PM4

文档 (PageMaker 4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PM5

文档 (PageMaker 5.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PM6

文档 (PageMaker 6.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PMC

图形 (A4TECH 扫描仪) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PMM

程序文件 (Amaris BTX/2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PN3

打印机设备驱动程序 (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PNG

<http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci214307,00.html> 位图 (便携式网络图形) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PNG

位图文件 (MacroMedia FireWorks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PNG

浏览器目录 (Paint Shop Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PNM

便携式 aNY 地图图形 (PBM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PNT

图形文件 (MacPaint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PNT

笔表绘图文件 (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PNT

QWK 阅读器指针文件 (MarkMail 2.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PNTG

与 PNT 文件相同 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.POG

PIG 文件扩展名 (Descent2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.POH

优化的 .goh 文件 (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.POL

3D 多边形建模文件 (Innovmetric) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.POL

Windows NT <http://searchWin2000.techtarget.com/sDefinition/0,,sid1_gci213368,00.html> 策略文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.POP

消息索引 (PopMail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.POP

弹出文件 (Visual dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.POT

PowerPoint 模板 (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.POV

视觉暂留文件 (光线追踪器) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.POW

和弦图表 (PowerChords) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PP

压缩的 Amiga 存档 (POWERPACKER) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PP4

位图 (Picture Publisher 4) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PPA

PowerPoint 加载项 (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PPB

打印预览的按钮栏 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PPD

PostScript 打印机定义文件规范 (Adobe Acrobat v.4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PPF

Pinnacle 程序文件 (Turtle Beach) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PPI

图形文件 (Microsoft PowerPoint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PPL

PolaroidPalettePlus ColorKey 设备驱动程序 (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PPM

便携式像素图位图 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PPO

预处理的输出文件 (Clipper 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PPP

桌面出版默认输出文件 (Serif PagePlus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PPP

文档或完成的项目 (Parson Power Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PPS

PowerPoint 幻灯片放映 (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PPS

故事板 (Personal Producer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PPT

PowerPoint 演示文稿 (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PQB

主引导备份文件 (PowerQuest BootMagic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PQI

驱动器映像文件 (PowerQuest) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PR2

演示文稿 (Aldus Persuasion 2.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PR2

打印机驱动程序 (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PR3

Postscript 打印机驱动程序 (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PR3

演示文稿 (Aldus Persuasion 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRC

资源 (文本或程序) 文件 (3com PalmPilot) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRD

打印机驱动程序 (通用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRE

演示文稿 (Lotus Freelance) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRE

设置 (Microsoft C/C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRE

设置 (Programmer's WorkBench) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRF

输出文件 (分析器) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRF

像素运行格式图形 (Improces-Fastgraph) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRF

打印机驱动程序 (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRF

设置文件 (Macromedia Director) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRF

系统文件 (Microsoft Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRG

程序文件 (WAVmaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRG

程序源文件 (Atari) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRG

程序源文件 (dBase IV, Clipper 5 和 Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRI

打印机定义 (LocoScript) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Printer

控制语言文件 (打印机就绪位图) (Hewlett-Packard) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRJ

项目文件 (3D Studio) (DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRM

参数文件 (通用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRN

打印表 (空格分隔文本) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRN

打印机驱动程序 (Signature) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRN

文本文件 (Lotus 1-2-3-Symphony) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRN

Windows 打印机文件 (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRO

配置文件 (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRO

图形配置文件 (DOS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRO

项目文件 (Terramodel) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRO

源代码文件 (Prolog) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRP

数据转换保存的项目文件 (Oberon Prospero) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRS

演示文稿文件 (Harvard Graphics for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRS

打印机资源字体文件 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRS

程序文件 (dBase IV) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRT

打印格式化文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRT

部件文件 (CADkey) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRT

部件文件 (Pro/Engineer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRT

打印机驱动程序 (Dr. Halo) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRV

互联网服务提供商模板文件 (psiMail) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRX

编译程序 (Microsoft FoxPro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PRZ

图形文件 (Lotus Freelance 97) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PS

Postscript <http://WhatIs.techtarget.com/definition/0,,sid9_gci212814,00.html>-格式文件 (Postscript 打印机就绪文件) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ps

PostScript 文件,用于打印或查看。 来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PSB

声音库文件 (Pinnacle) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PSD

位图 (Adobe Photoshop) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PSE

位图图形 (IBM 打印机页面段) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PSF

轮廓 PostScript 打印机字体 (ChiWriter) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PSI

A-law 音频文件 (psion) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PSM

声音数据文件 (Epic Pinball) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PSM

工作室模块 (ProTracker) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PSM

IDE 的符号表 (Turbo Pascal) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PSP

图像文件 (PaintShop Pro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PSP

过程 (Prodea Synergy) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PSR

报告文件 (PowerSoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PST

个人文件夹文件 (Microsoft Outlook) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PT3

设备驱动程序 (Harvard Graphics 3.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PT3

模板 (PageMaker 3.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PT4

模板 (PageMaker 4.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PTB

脚本文件 (PubTech BatchWorks) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PTB

表格文件 (Pro/Engineer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PTD

表格文件 (Pro/ENGINEER) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PTL

花瓣文件 (Microsoft Visual Modeler 的 ASCII 版本) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PTM

宏 (PubTech BatchWorks) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PTM

音乐模块 (MOD) (Polytracker) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PTR

QWK 阅读器指针文件 (QMail) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PUB

文档 (Microsoft Publisher) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PUB

公钥环文件 (PGP) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PUB

出版物 (Ventura Publisher) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PUD

地图文件 (WarCraftII) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PUT

压缩文档 (PUT) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PVD

脚本文件 (Instalit) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PVL

库文件 (Instalit) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PVT

本地点列表 (Fidonet) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PW

文本文件 (Professional Write) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PWD

Word 文档 (Microsoft Pocket) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PWL

密码列表文件 (Microsoft Windows 9.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PWP

图像文件 (使用 Photoworks 查看的胶卷) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PWP

文本文档 (Professional WritePlus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PWZ

PowerPoint 向导 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PX

主数据库索引 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PXL

Pocket Excel 电子表格 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PY

python <http://searchEnterpriseLinux.techtarget.com/sDefinition/0,,sid39_gci213538,00.html> 脚本文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.py

Python 程序源代码。 来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PY

已保存的电子邮件 (YAHOO) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PYC

python <http://searchEnterpriseLinux.techtarget.com/sDefinition/0,,sid39_gci213538,00.html> 编译脚本文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PZD

默认设置 (Pizazz Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PZO

覆盖文件 (Pizazz Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PZP

调色板 (Pizazz Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PZS

设置 (Pizazz Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PZT

传输文件 (Pizazz Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.PZX

交换文件 (Pizazz Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QAD

文档 (PF QuickArt) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QAG

快速访问组数据文件 (Norton Desktop) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QAP

应用程序文件 (Omnis Quartz) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QBE

已保存的查询 (dBase IV) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QBE

已保存的查询 (Quattro Pro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QBO

编译查询 (dBase IV) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QBS

程序文件 (Microsoft QuickBasic) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QBW

电子表格数据 (QuickBooks for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QCP

语音文件 (Qualcomm Pure Voice) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QD0

数据文件段 10 (Omnis Quartz) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QD1

数据文件段 1 (Omnis Quartz) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QD2

数据文件段 2 (Omnis Quartz) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QD3

数据文件段 3 (Omnis Quartz) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QD3D

QuickDraw 3D 元文件 (Apple) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QD4

数据文件段 4 (Omnis Quartz) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QD5

数据文件段 5 (Omnis Quartz) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QD6

数据文件段 6 (Omnis Quartz) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QD7

数据文件段 7 (Omnis Quartz) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QD8

数据文件段 8 (Omnis Quartz) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QD9

数据文件段 9 (Omnis Quartz) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QDF

数据文件 (Quicken) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QDK

启动文件备份 (QEMM) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QDT

来自 Quicken UK 会计/税务/发票程序的数据文件 (QuickBooks) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QDV

图形文件 (Steve Blackstock Giffer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QEF

查询文件 (Microsoft Excel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QEL

电子库文件 (Quicken) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QFL

文档 (FAMILY LAWYER) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QFX

传真 (QuickLink) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QIC

备份文件 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QIF

图像 (MIME)(QuickTime) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QIF

导入文件 (Quicken) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QLB

库文件 (Microsoft C/C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QLB

库文件 (Quick) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QLC

数据 (PostScript 帮助文件) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QLP

打印机驱动程序 (QuickLink) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QM

运动文件 (Quality) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QM4

选项或服务文件 (QMail 4.x Mail Door) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QPR

生成的查询程序 (Microsoft FoxPro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QPR

打印队列设备驱动程序 (OS/2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QPX

编译的查询程序 (Microsoft FoxPro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QQT

Qardware 定义文件 (Quick Qard Technology) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QRP

报表生成器文件 (Centura) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QRP

报告文件 (Liberty for Windows 2.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QRS

公式编辑器支持文件 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QRT

QRT 图形文件 (Ray Tracer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QRY

查询 (dBase IV) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QRY

查询 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QSD

数据文件 (Quicken) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QST

标签文件 (Quake Spy) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QT

电影文件 (QuickTime) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QTI

图像文件 (QuickTime) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QTIF

图像文件 (QuickTime) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QTM

电影文件 (QuickTime) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QTP

首选项文件 (QuickTime) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QTS

图像文件 (QuickTime) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QTS

PICT 图像文件 (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QTX

图像文件 (QuickTime) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QW

写入程序文件 (Symantec Q&A) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QWK

消息文件 (QWK Reader) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QXD

数据文件 (Quark Xpress) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QXL

元素库 (Quark Xpress) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.QXT

模板文件 (Quark Xpress) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.R

Ratfor 文件 (FORTRAN Preprocessor) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.R

资源文件 (Pegasus Mail) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.R8

原始图形 (每像素一字节) 平面一 (PicLab) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.R8P

Pcl 4 位图字体 (Intellifont) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RA

声音文件 (RealAudio) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RAD

雷达数据文件 (Radar ViewPoint) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RAM

元文件 (RealAudio) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RAO

ReadAllOver (YOUniverse) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RAR

RAR 压缩文档 (Eugene Roshall's format) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RAS

位图 (Sun Raster Images) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RAT

数据文件 (RATS) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RAW

原始文件格式 (位图) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RAW

原始带符号 PCM 数据 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RAW

原始带符号 PCM 数据 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RBF

数据文件 (Rbase) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RBH

由 RoboHELP 维护,RBH 文件添加到帮助项目文件中包含的信息 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RC

配置文件 (emacs) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RC

资源脚本 (Borland C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RC

资源脚本 (Micosoft C/C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RCG

新闻组文件 (Netscape) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RD1

注册关卡文件 (Descent1) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RDF

编译的 UIC 源代码 (Geoworks UI Compiler) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RDF

研究文档信息格式 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RDF

资源描述框架文件 (与 XML <http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci213404,00.html> 和元数据 <http://searchDatabase.techtarget.com/sDefinition/0,,sid13_gci212555,00.html> 相关) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RDI

设备无关的位图文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RDL

注册关卡文件 (Descent) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RDX

数据文件 (Reflex) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.REC

数据文件 (EpiInfo) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.REC

记录文件 (Sprint) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.REC

录制的宏 (Microsoft Windows 3.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.REC

语音文件 (RapidComm) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RED

路径信息文件 (Clarion Modula-2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.REF

参考文件 (Generic) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.REG

OLE 注册文件 (Microsoft Windows 3.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.REG

注册文件 (Corel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.REG

注册文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.related

小型 PC 应用程序多用户的数据文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.REM

备注文件 (Generic) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.REP

回复文件 (QWK Reader) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.REP

报告文件 (CodeReporter) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.REP

报告文件 (DataBoss) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.REP

报告文件 (Report Designer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.REP

报告文件 (Visual dBase) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.REQ

请求文件 (Generic) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RES

编译的资源文件 (Borland C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RES

资源文件 (dBase IV) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RES

资源文件 (Microsoft Visual C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.REV

修订文件 (GeoWorks) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.REX

报表定义 (Oracle) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.REX

源代码文件 (REXX) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.REZ

资源文件 (Generic) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RF

栅格图形文件 (Sun) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RFT

可修订格式文本 (IBM 的 DCA 或文档内容架构的一部分) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RGB,SGI

RGB 文件 (Silicon Graphics) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RGX

符号表 (ReaGeniX 代码生成器) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RH

资源头文件 (Borland C++ 4.5) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RI

数据文件 (Lotus 1-2-3) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RIB

Renderman 格式的图形 (3DReality) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RIC

传真文档 (Ricoh) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RIF

图像文件 (Metacreations Painter 5) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RIF

RIFF 位图图形 (Fractal Design Painter) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RIP

图形 (远程访问) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RIX

位图图形 (ColorRIX VGA Paint) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RL1

注册关卡文件 (Descent1) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RL2

注册关卡文件 (Descent2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RL4

位图图形文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RL8

位图图形文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RLA

Wavefront 栅格图像 (SDSC Image Tool) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RLB

数据文件 (Harvard Graphics Win 9.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RLC

图形文件 (每像素 1 位扫描仪输出文件) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RLE

行程长度编码位图 (SDSC Image Tool) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RLZ

Realizer 源代码文件 (CA-Realizer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RM

视频文件 (RealAudio) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RMD

文档 (Microsoft RegMaid) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RMF

丰富地图格式 (3-D 游戏编辑器用于存储地图) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RMF

丰富音乐格式 (Beatnik) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RMI

MIDI 音乐 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RMK

Makefile (Clipper RMake) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RN

Xpl 程序文件 (Nota Bene) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RND

渲染幻灯片 (AutoCAD-AutoShade) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RNO

Runoff 文件 (VAX) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ROL

FM 音乐 Adlib 音乐文件 (Roland) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ROM

基于卡带的家用视频游戏模拟器文件 (来自 Atari 2600、Colecovision、Sega、Nintendo 等卡带中 ROM 内容的精确副本;在模拟器之间不可互换) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ROV

数据文件 (Rescue Rover) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RPD

数据库 (RapidFire) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RPL

文本文档 (Replica) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RPL

视频文件 (Tomb Raider) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RPM

包管理器 (RedHat Linux) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.rpm

RedHat 包管理器 rpm 文件。 来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RPT

Crystal Reports 文件 (以及 Microsoft Visual Basic 的子集) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RRS

已保存的游戏文件 (Ace Road Rash) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RS

数据文件 (Amiga Resource Reassembler) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RSB

红 Storm 位图 (Rainbow 6 (游戏) 和多个图像编辑程序) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RSC

资源文件 (Generic) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RSL

Paradox 7 报表 (Broderland) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RSM

简历文件 (WinWay Resume Writer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RSP

响应文件 (Generic) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RS_

资源分支文件 (Macintosh Mac-ette) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RTF

<http://searchExchange.techtarget.com/sDefinition/0,,sid43_gci214276,00.html> 富文本格式文档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RTF

帮助文件脚本 (Microsoft Windows 9.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RTK

RoboHELP 用于模拟 Windows 帮助的搜索功能 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RTL

运行时库 (NU 7.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RTL

文本文件 (Generic) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RTM

音乐模块 (MOD) (Real Tracker) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RTP

软件更新包数据文件 (RTpatch) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RTS

RoboHELP 加速复杂操作 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RTS

RTSL 文档 (RealAudio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RTS

运行时库文件 (CA-Realizer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RUL

InstallShield 中使用的扩展名 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RUN

编译输出 p 代码文件 (Softworks basic compiler) (SoftworksLtd) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RVP

扫描配置文件 (MIME) (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RVW

审阅文件 (通用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RWS

Resource Workshop 数据文件 (Borland C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RWX

脚本文件 (RenderWare) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.RXX

来自多卷存档的 RAR 压缩文件 (xx = 01 到 99 的数字) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.S

汇编器源代码 (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.S

源代码文件 (Scheme) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.S$$

临时排序文件 (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.S3I

乐器文件 (Scream Tracker v 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.S3M

16 声道音乐文件 (Scream Tracker v 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SAI

加密视频文件 (Integrated Sensors) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SAL

数据文件 (SORITEC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SAM

文档 (AMI Professional) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SAM

带符号 8 位采样数据文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SAR

压缩存档 (SAR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SAV

备份文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SAV

配置文件 (通用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SAV

保存的游戏文件 (通用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SB

原始带符号字节 (8 位) 音频数据 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SB!

锁定文件 (Superbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SBD

数据定义文件 (Superbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SBD

故事板数据文件 (Storyboard Editor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SBF

文件数据 (Superbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SBI

乐器文件 (Creative Labs SoundBlaster) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SBK

Bank 文件 (Soundblaster)/EMU SoundFont v1.x (Creative Labs Soundfont 1.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SBL

Flash 对象 (ShockWave) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SBP

Dml 程序文件 (Superbase 4) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SBP

程序文件 (Superbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SBQ

查询定义文件 (Superbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SBR

支持文件 (Source Browser) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SBT

与记录数据相关的注释 (Windows 版 Superbase 4) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SBV

表单定义文件 (Superbase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SC

显示驱动程序 (Framework II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SC

Pal 脚本 (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SC2

SAS 目录 (Windows 95/NT, OS/2, Mac) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SC2

Schedule+ 7.0 文件 (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SC3

重命名的 dBase III 屏幕掩码文件 (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SC3

保存的游戏文件 (SIMM City 3000) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SC3

屏幕设备驱动程序 (Harvard Graphics 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SC4

关卡文件 (Roller Coaster Tycoon) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCA

数据文件 (SCA) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCC

Source Safe 文件 (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCC

文本文件 (Generic) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCD

数据文件 (Microsoft Schedule+ 7.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCD

对象描述语言图形 (Scodl Scan Conversion) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCD

幻灯片图像 (Matrix/Imapro SCODL) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCF

命令文件 (Microsoft Windows Explorer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCF

多媒体演示 (ScoreMaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCF

拼写检查器配置文件 (Symphony) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCH

数据文件 (Microsoft Schedule+ 7.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCH

原理图文件 (ORCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCI

传真文档 (SciFAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCI

Inspire 本机格式 (ScanVec) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCI

系统配置信息文件 (通用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCM

Scheme 源代码文件 (通用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCM

视频游戏机 ROM 模拟器文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCN

场景数据文件 (TrueSpace2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCN

屏幕文件 (Kermit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCO

高分文件 (通用游戏文件) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCP

拨号网络脚本 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCP

脚本文件 (BITCOM) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCR

调试源代码 (DOS Debug) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCR

传真图像 (通用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCR

屏幕字体文件 (LocoScript) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCR

屏幕快照文件 (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCR

屏幕快照文件 (Procomm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCR

屏幕保护程序文件 (Microsoft Windows 9.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCT

CT 位图 (Scitex) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCT

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

.SCT

SAS 目录 (Dos) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCT01

SAS 目录 (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCV

CASmate 本机格式 (ScanVec) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCX

位图图形 (ColorRIX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCX

图表 (Stanford Chart) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCX

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

.SCX

屏幕文件 (Microsoft FoxPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SCY

安全文件 (ReaGeniX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SD

音频 (Sound Designer I) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SD2

扁平文件/数据分支 (Sound Designer II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SD2

SAS 数据库 (Windows 95/NT OS/2, Mac) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SDA

文件存档描述 (Fidonet 软件分发网络) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SDC

电子表格 (Staroffice)(StarCalc) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SDD

演示文稿文件 (Staroffice)(Starimpress) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SDF

系统数据文件格式 - 传统 Unisys (Sperry) 格式 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SDI

软件分发网络信息文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SDK

软盘映像 (Roland) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SDL

库文件 (SmartDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SDN

软件分发网络压缩存档 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SDP

数据文件 (Cocreate SolidDesigner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SDPC

数据文件 (Cocreate SolidDesigner) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SDR

绘图 (SmartDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SDS

原始 Midi 采样转储标准文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SDT

模板 (SmartDraw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SDV

分号分隔值文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SDW

图形文件 (Lotus WordPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SDW

原始带符号 DWord (32 位) 数据 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SDX

由 SDX 压缩的 Midi 采样转储标准文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SEA

自解压存档 (Stuffit 用于 Mac 文件,也可能用于其他文件) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SEC

密钥环文件 (PGP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SEC

安全动画文件 (Disney Animation Studio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SED

屏幕编辑器脚本文件 (SED) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SEL

数据文件 (Copy Books) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SEP

打印机分隔页 (通用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SEP

标记图像文件格式 (TIFF) 位图 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SEQ

动画文件 (Atari) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SEQ

顺序指令文件 (Bubble Chamber) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SES

会话文件 (Cool Edit) (通用数字音频编辑器文件) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SES

会话信息文件 (Clarion Modula-2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SESSION

Internet Security Scanner 文件 (ISS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SET

配置文件 (1st Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SET

安装驱动程序集 (Symphony) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SET

安装选项文件 (通用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SET

语音集文件 (Quartet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SEW

缝纫程序文件 (通用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SF

SoundFile 格式 (IrCam) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SF

Wps 属性存储文件 (OS/2 WorkPlace Shell) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SF2

Bank 文件 (Creative Labs Soundfont 2.0)(Soundblaster) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SF2

SoundFont 文件 (EMU 版本 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SFD

声音文件数据 (SoundStage) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SFI

图形文件 (SIS Framegrabber) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SFI

打印机字体文件 (Hewlett-Packard Laser Jet Landscape) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SFI

打印机字体文件 (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SFI

声音文件信息 (SoundStage) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SFK

声音文件 (Sonic Foundry) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SFL

Pcl 4 位图字体 (Intellifont) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SFL

Pcl 4 位图字体 (LandScape) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SFL

Pcl 4 位图字体 (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SFN

字体文件 (SPX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SFP

Pcl 位图字体 (Intellifont) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SFP

Pcl 位图字体 (Portrait) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SFP

Pcl 位图字体 (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SFR

采样资源 (Sonic Foundry) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SFS

Pcl 5 可缩放字体文件 (Intellifont) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SFT

屏幕字体 (ChiWriter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SFW

损坏的 JPEG (Seattle Filmworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SFX

自解压存档 (RAR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SG

图像文件 (SnapGraphix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SG1

图形文件 (Stanford Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SGF

带图形的文档 (StarWriter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SGF

图形文件 (Sonique) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SGI

图形文件 (IRIS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SGI

图形文件 (Silicon Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SGML

标准通用标记语言 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.sgml

标准通用标记语言。用于创建可转换为多种不同格式的文档。From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SGP

统计文件 (STATGRAPHICS Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SGT

保存/获取键盘宏 (Signature) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SH

ASCii 存档 (Unix/SHAR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.sh

sh shell 脚本。From Rute-Users-Guide 它可以被任何 Bourne 兼容 shell 解释。 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SH

Shell 脚本 (Unix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SH3

演示文稿文件 (Harvard Graphics) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHB

文档快捷方式文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHB

演示文稿 (Corel Show) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHG

位图 (HotSpot) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHK

压缩 Apple 存档 (SHRINKIT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHK

压缩存档 (Arthurian Shrink Archiver) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHM

Shell 宏 (Windows 版 WordPerfect 库) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHN

音频压缩文件 (Shorten) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHP

DOS 形状文件 (3D Studios) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHP

某些程序用于多部分交互式三角形模型 3D 建模的文件格式 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHP

Shapefile 空间数据格式 (被许多 GIS 程序使用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHP

文本字体的源代码和形状文件 (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHR

文件存档 (Unix ASCii) (SHAR) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHS

Shell 碎片文件;据报道用于发送“密码窃取器” From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHTML

包含服务器端包含 (SSI) 的 HTML 文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHW

演示文稿 (Corel Show) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHW

演示文稿 (Harvard Graphics 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHW

幻灯片放映 (Windows 版 WordPerfect) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHX

形状实体 (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SHX

Shapefile 空间索引文件 (ArcView) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SIF

安装程序文件 (Microsoft Windows NT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SIG

当前程序设置 (Signature) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SIG

签名文件 (PopMail) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SIK

备份文件 (Windows 版 Microsoft Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SIK

备份文件 (Sicherungskopie) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SIT

Mac 文件的压缩存档 (Stuffit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SIZ

配置文件 (Oracle 7) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SKA

密钥环文件 (PGP) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SKF

绘图文件 (AutoSketch) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SKL

资源文件 (Macromedia Director) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SL

保存布局扩展名 (PACT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SL

源代码文件 (S-Lang) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SLB

幻灯片库文件 (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SLC

编译的 SALT 脚本 (Telix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SLD

幻灯片文件 (AutoCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SLI

幻灯片文件 (MAGICorp Slide Service) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SLK

符号链接电子表格 (SLYK) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SLL

声音数据文件 (通用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SLT

脚本应用程序语言 (SALT) (Telix 脚本源) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SM

邮件列表 (SoftSpoken Mailer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SM

脚本文件 (ScriptMaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SM

源代码文件 (Smalltalk) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SM

文本文件 (Samna Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SM3

符号文件 (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SMD

视频游戏机 ROM 模拟器文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SMF

传真文档 (SMARTFAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SMK

图像文件 (Deer's Revenge) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SMK

图像文件 (Nascar Racing '99) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SMK

图像文件 (Smack Player) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SMM

宏 (AMI Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SMP

采样文件 (AdLib Gold) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SMP

Samplevision 格式 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SMS

模拟器 ROM 映像文件 (8 位世嘉 Master System) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SMT

SmartObject 文件 (IconAuthor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SMT

文本文件 (Smart Ware II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SND

原始无符号 PCM 数据 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SND

采样 (AKAI MPC) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SND

声音文件 (NeXt) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SND

声音资源 (Macintosh) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SNDR

声音文件 (Sounder) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SNDT

声音文件 (SndTool) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SNG

Midi 歌曲文件 (Midisoft Studio) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SNG

Midi 歌曲文件 (Prism) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SNM

邮箱(邮件文件夹)索引 (Netscape) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SNO

源代码文件 (Snobol4) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SNP

输出视频文件 (Computer Eyes) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SO

共享库文件 (Unix)(相当于 Windows DLL)From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.so

共享对象文件。lib*.so 是一个动态链接库。[可执行程序代码被多个程序共享,以节省磁盘空间和内存。] From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SOL

解决方案文件 (常用于游戏示例,教程) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SOM

网络序列号 (Quattro Pro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SOM

排序信息文件 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SON

歌曲文件 (Creative Labs SoundBlaster Studio II) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SOU

声音文件 (Creative Labs SoundBlaster Studio) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SP

Unix 的压缩文档 (Sprint) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SP4

保存的游戏 (过山车大亨) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPC

程序文件 (Microsoft MultiPlan) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPC

临时文件 (Windows 版 WordPerfect) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPD

数据文件 (语音) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPD

可缩放字体 (Harvard Graphics 3.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPD

可缩放字体 (Speedo) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.spd

Speedo X Window 系统字体文件。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPF

幻灯片演示文件 (EnerGraphics) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPG

词汇表文件 (Sprint) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPI

图形文件 (Phillips 扫描仪) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPI

图形文件 (西门子扫描仪) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPL

压缩文档 (SPLINT) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPL

自定义打印机驱动程序 (Sprint) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPL

对象文件 (ShockWave Flash) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPL

个人拼写字典 (Signature) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPL

打印机假脱机文件 (Microsoft Windows 3.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPL

采样文件 (DigiTracker) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPL

采样文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPM

数据文件 (Windows 版 WordPerfect) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPP

打印机文件 (Sprint) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPPACK

声音采样 (SP Pack) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPR

文档信件 (Sprint) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPR

生成的屏幕程序 (Microsoft FoxPro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPR

精灵图 (图像分层和调整大小) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPRITE

位图文件 (Acorn) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPS

屏幕驱动程序 (Sprint) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPS

Spssx 源代码文件 (VAX/VMS) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPT

源代码文件 (Spitbol) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPT

支持文件 (MITAC 磁盘/系统管理实用程序包) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPU

图片文件 (Spectrum 512) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPW

工作表 (SigmaPlot) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SPX

编译的屏幕程序 (Microsoft FoxPro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SQC

结构化查询语言 (SQL) 公共代码文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SQL

通常被数据库产品用作 SQL 查询的扩展名 (脚本、文本或二进制) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SQL

SQL 查询 (Informix) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SQP

音频搜索的查询结果 (Sonique) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SQR

结构化查询语言 (SQL) 程序文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SQZ

压缩文档 (SQUEEZE) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.src.rpm

Source RPM 文件。一个可以重新编译和安装的“tarball”,也允许基于 RPM 的系统管理它们。来自 Binh http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SRE

未定义文件 (摩托罗拉) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SRF

栅格图形文件 (Sun) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SRM

视频游戏机 ROM 模拟器文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SRP

脚本文件 (QuickLink) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SRZ

源文件 (DataFlex) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SS

位图图形 (Splash) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SSA

视频文件 (Sub Station Alpha) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SSD

数据文件 (SAS/PC) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SSD

SAS 数据库 (Dos) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SSD01

SAS 数据集 (Unix) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SSF

电子表格文件 (Enable) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SSP

数据文件 (SAS 传输) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ST

磁盘映像文件 (Atari) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ST

乐器库 (Scream Tracker) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ST

源代码文件 (Little SmallTalk) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ST

图章文件 (NeoPaint) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STA

保存状态 (Reflection 4.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STA

堆栈文件 (SpinMaker Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STB

存根库 (Genus GX Kernel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STD

标准脚本文件 (LocoScript) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STD

状态转换图图形文件 (Prosa) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STF

压缩文档 (SHRINKTOFIT) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STL

立体光刻文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STM

音乐文件 (Scream Tracker) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STM

音乐模块 (MOD) (Scream Tracker 2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STM

.shtml 的较短后缀,一个包含服务器端包含的 HTML 文件 (SSI <http://WhatIs.techtarget.com/definition/0,,sid9_gci214225,00.html>) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STM

状态转换图模型文件 (Prosa) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STO

Pascal 存根 OBJ 文件 (Genus GX Kernel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STQ

文本文件 (Statistica) (StatSoft Software) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STR

屏幕保护程序文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STR

结构列表 OBJ 文件 (dBase IV 应用程序生成器) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STS

项目状态信息文件 (Microsoft C/C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STS

歌曲文件 (音乐) (Scream Tracker) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STW

数据文件 (Windows 版 SmartTerm) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STX

电子书文件 (SmarText) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STX

税务表格 (CA-Simply Tax) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STY

样式表 (通用文本和图形程序) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.STY

样式表 (Ventura Publisher) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SUI

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

.SUM

摘要文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SUN

光栅文件图形 (Sun) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SUP

补充字典文件 (Windows 版 WordPerfect) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SVD

文档的自动保存文件 (Windows 版 WordPerfect) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SVF

简单矢量格式 2D 图像 (Microstation) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SVG

词汇表的自动保存文件 (Windows 版 WordPerfect) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SVG

可缩放矢量图形文件 (Adobe) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SVP

图形文件 (Sonique) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SVS

样式表的自动保存文件 (Windows 版 WordPerfect) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SVX

交换文件格式,8SVX/16SV 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SVX

声音文件 (Amiga 8SVX) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SVY

数据库文件 (SAVVY/PC) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SW

原始带符号字 (16 位) 数据 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SWA

Macromedia Director 中的 Shockwave 音频文件 (一个 MP3 文件) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SWF

对象 (ShockWave Flash) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SWG

Swag Packet 文件 (SWAG Reader) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SWP

文档备份文件 (Sprint) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SWP

交换文件 (DataCAD) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SWP

交换文件 (DOS) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SY1

Smartpix 符号库 (Ami Pro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SY3

符号文件 (Harvard Graphics 2.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SYD

启动文件备份 (QEMM) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SYM

预编译头文件 (Borland C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SYM

程序符号表 (编译器通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SYM

符号文件 (Harvard Graphics 2.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SYN

SDSC Synu 图像文件 (SDSC Image Tool) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SYN

同义词文件 (Microsoft Word 5.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SYS

数据文件 (SPSS/PC) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SYS

数据文件 (SYGRAPH) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SYS

数据文件 (SYSTAT) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SYS

系统文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SYS

系统文件设备驱动程序或硬件配置文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SYW

图形符号 (Harvard Graphics) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.SYW

Wave 文件 (Yamaha SV 系列) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.T

源文件 (TADS) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.T

磁带存档 (TAR) (无压缩) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.T

测试器符号文件 (ReaGeniX 代码生成器) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.T2T

建模软件文件 (Sonata CAD) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.T44

用于排序索引的临时文件 (dBase IV) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.T64

模拟器磁带映像文件 (Commodore 64) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TAB

吉他谱文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TAB

表格文件 (MapInfo GIS) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Tag

图像位图文件 (TIFF) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TAG

查询标记名称文件 (DataFlex) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TAH

Turbo 汇编程序帮助文件 (Borland C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TAL

文本插图文件 (TypeAlign) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TAR

<http://searchEnterpriseLinux.techtarget.com/sDefinition/0,,sid39_gci213093,00.html> 磁带存档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TAR

压缩文档 (TAR) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.tar

tar 压缩的目录树。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.tar.gz

参见 tarball。来自 Binh http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TAZ

压缩 ASCII 文档 (COMPRESS) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TAZ

压缩 ASCII 文档 (TAR) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TAZ

Gzip/磁带存档 (Unix) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TB1

字体文件 (Borland Turbo C) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TB2

字体文件 (Borland Turbo C) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TBF

传真文档 (Imavox TurboFax) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TBK

交互式多媒体文件 (Asymetrix Toolbook) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TBK

备忘录备份文件 (dBase IV) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TBK

备忘录备份文件 (Microsoft FoxPro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TBK

Toolbook 文件 (Asymetrix Toolbook) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TBL

图形 (本机格式) (Pagemaker TableEditor) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TBL

值表 (OS/2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TBS

文本元素 (Windows 版 Microsoft Word) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TBX

表格 (Project Scheduler 4) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TC

配置文件 (Borland C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TC

配置文件 (Turbo C) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TCH

Turbo C 帮助文件 (Borland C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TCL

TCL/TK 语言脚本 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.tcl

Tcl/Tk 源代码 (编程语言)。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TCW

绘图文件 (Windows 版 TurboCAD) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TD

配置文件 (DOS 版 Turbo Debugger) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TD0

磁盘映像文件 (Teledisk) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TD2

配置文件 (WIN32 版 Turbo Debugger) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TD4

保存的轨道设计 (过山车大亨) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TDB

数据库文件 (TACT) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TDB

数据库文件 (Thumbs Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TDDD

Imagine 和 Turbo Silver 光线追踪器使用的文件格式 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TDF

字体文件 (TheDraw) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TDF

字体定义文件 (Speedo) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TDH

帮助文件 (Turbo Debugger) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TDK

击键记录文件 (Turbo Debugger) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TDS

符号表 (Turbo Debugger) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TDW

配置文件 (Windows 版 Turbo Debugger) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TEF

传真文档 (Relisys TEFAX) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TEL

主机文件 (Telnet) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TEM

输入模板 (IconAuthor) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TEM

Turbo Editor 宏语言脚本 (Borland C++) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TEX

数据表文件 (Idealist) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.tex

TEX 或 LATEX 文档。LATEX 用于文档处理和排版。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TEX

TEX 文本文件 (Scientific Word) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TEX

纹理文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.texi, .texinfo

Texinfo 源代码。Info 页面由此编译而来。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TF

配置文件 (Turbo Profiler) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TFA

区域文件 (Turbo Profiler) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TFC

目录文件 (Tobi's Floppy Disk Cataloguer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TFH

帮助文件 (Turbo Profiler) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TFM

表单文件 (Form Tool Gold) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.tfm

LATEX 字体度量文件。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TFM

标记字体度量文件 (TeX) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TFM

TeX 字体度量文件 (TeX) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TFS

统计文件 (Turbo Profiler) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TG1

项目文件 (On Target) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TGA

Targa 位图 (Adobe Acrobat,TrueVision) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TGA

Targa 位图 (Countour Mortgage Loan Format) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.tga

TARGA 图像文件。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TGA

Winpoint 贷款文件 (Microsoft Excel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TGQ

电影文件 (地下城守护者 2) (Bullfrog Software) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TGV

视频文件 (Electronic Arts) (极品飞车 I/II/III, NBA '96) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.tgz

已使用 tar 存档,然后使用 gzip 压缩的目录树。也是 Slackware 发行版的软件包。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TGZ

Gzip/磁带存档 (Unix) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.THEME

桌面主题 (Microsoft Windows 9.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.THM

缩略图图像文件 (Microsoft Clip Gallery v.1.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.THN

缩略图 (Graphics Workshop for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.THS

同义词词典 (Windows 版 WordPerfect) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TIF

标记图像位图文件 (TIFF) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TIFF

<http://WhatIs.techtarget.com/definition/0,,sid9_gci214180,00.html> 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.tiff

TIFF 图像文件。 From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TIG

地图文件 (Tiger) (美国政府用于分发地图文件) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TIL

模糊逻辑知识库文件 (Togai InfraLogic Fuzzy-C 编译器) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TIM

纹理/图像文件 (Playstation) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TIS

图块集 (麻将 3.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TJF

备份文件 (VAXTPU 编辑器) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TLB

OLE 类型库文件 (Microsoft) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TLB

参考表 (Bubble Editor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TLB

文本库 (VAX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TLB

类型库 (Visual C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TLC

编译的工具命令语言源代码文件 (Swat) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TLE

双行元素集 (NASA) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TLP

项目时间线文件 (Microsoft Project) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TLX

数据文件 (Trellix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TMF

标记字体度量文件 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TMO

Ztg 全局优化器默认优化器文件 (Zortech C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TMP

临时文件 (Microsoft Windows) (全部) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TMS

脚本文件 (Telemate) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TNV

数据文件 (BitWare) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TOC

目录文件 (Eudora 邮箱) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TOL

图像文件 (柯达照片增强器) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TOS

自解压存档 (Atari ST) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TOS

Atari 16/32 和 32/32 计算机系列的操作系统 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TP

配置文件 (Turbo Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TP

会话状态文件 (Turbo Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TP3

模板文件 (哈佛图形) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TP4

保存的图片文件 (过山车大亨) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TPB

可下载的 PCL 软字体文件备份 (HiJaak) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TPF

可下载的 PCL 软字体文件 (HiJaak) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TPH

帮助文件 (Turbo Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TPL

加密的课程文件 (TutorPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TPL

常驻单元库 (Turbo Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TPL

模板文件 (Cakewalk 音频) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TPL

模板文件 (DataCAD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TPL

模板文件 (哈佛图形 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TPP

项目文件 (Teleport Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TPP

保护模式单元 (Borland Pascal 7.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TPU

命令文件 (VAXTPU 编辑器) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TPU

Turbo Pascal 单元 (Turbo Pascal)(BGI) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TPV

打包图形文件 (TutorPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TPW

打包波形文件 (TutorPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TPW

会话状态文件 (适用于 Microsoft Windows 的 Turbo Profiler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TPW

Turbo Pascal 单元 (BGI) (适用于 Windows 9.x 的 Turbo Pascal) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TPX

图像文件 (ULead Photo Express) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TPZ

压缩存档 (GNUzip) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TPZ

压缩文档 (TAR) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TR

会话状态设置 (适用于 DOS 的 Turbo Charge Debugger) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TR2

会话状态设置 (适用于 Win32 的 Turbo Charge Debugger) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TRA

保存的游戏文件 (Coaster) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TRC

调试支持文件 (Power CTrace) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TRE

目录树文件 (PC-Tools) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TRK

脚本文件 (Kermit) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TRM

终端文件 (通用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TRM

终端设置文件 (Microsoft Windows 3.x) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TRN

项目使用日志 (MKS Source Integrity) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TRN

翻译支持文件 (Quattro Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TRS

可执行文件 (MicroGraphix) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TRW

会话状态设置 (适用于 Windows 的 Turbo Debugger) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TST

打印机测试文件 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TTF

TrueType 字体 (通用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ttf

Truetype 字体。 From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TTK

翻译工具包文件 (Corel Catalyst) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TTO

客户端访问数据规范文件 (AS/400) (服务器到客户端) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TUV

教程文件 (许多程序使用此后缀作为其教程) (通用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TV

表格视图设置 (Paradox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TV1

文档 1 中插入点上方的溢出文件 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TV2

文档 2 中插入点上方的溢出文件 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TV3

文档 3 中插入点上方的溢出文件 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TV4

文档 4 中插入点上方的溢出文件 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TV5

文档 5 中插入点上方的溢出文件 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TV6

文档 6 中插入点上方的溢出文件 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TV7

文档 7 中插入点上方的溢出文件 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TV8

文档 8 中插入点上方的溢出文件 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TV9

文档 9 中插入点上方的溢出文件 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TVF

表格视图设置 (dBase IV) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TWF

数据文件 (TABWorks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TWW

模板文件 (TagWrite) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TX8

MS-DOS 文本 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TXB

编码的简报文件 (Descent/D2) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TXF

压缩存档 (FREEZE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TXF

压缩文档 (TAR) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TXF

税务交换格式 (Quicken 等) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TXI

支持文件 (TeX) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TXT

ASCII <http://WhatIs.techtarget.com/definition/0,,sid9_gci211600,00.html> 文本格式数据 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.txt

纯英文文本文件。 From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TXW

波形文件 (Yamaha TX16W) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TYM

时间戳文件 (PageMaker 4.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TZ

旧压缩文件 (TAR), (COMPRESS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.TZB

压缩存档 (Tar) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UAP

用户代理配置文件 (无线电话应用程序使用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UB

原始无符号字节 (8 位) 数据 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UC2

压缩存档 (UltraCompressor II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UCN

新的压缩存档 (UltraCompressor II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UDF

图像过滤器 (Photostyler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UDF

唯一数据库 (Microsoft Windows NT) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UDW

原始无符号双字 (32 位) 数据 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UE2

加密存档 (UltraCompressor II) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UFO

对象文件 (Ulead) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UG

绘图文件 (AutoCAD 和其他) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UHS

二进制文件 (通用提示系统) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UI

Espire 源代码 (Geoworks UI 编译器) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UI

用户界面文件 (Sprint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UIF

Microsoft Windows 的长提示 (WordPerfect for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UIH

Espire 头文件 (Geoworks UI 编译器) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UL

音频文件 (ULAW) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ULAW

(CCITT G.711) 音频 (美国电话) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ULD

上传的文件信息 (Procomm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ULT

音乐模块 (MOD) (UltraTracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UMB

备份文件 (存档) (MemMaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UNI

数据文件 (Forcast Pro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UNI

UniMod 音乐模块 (MOD) (MikMod) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UNX

文本文件 (特定于 Unix 的信息) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UPD

更新的程序数据 (dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UPD

更新的程序数据 (通用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UPI

程序文件 (ULead Photo Impact) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UPO

编译的更新数据文件 (dBase) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UPX

保存的图像文件 (ULead Photo Express) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.URF

通用雷达格式 (雷达 ViewPoint) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.URL

互联网快捷方式文件 (通用资源定位器) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.USE

源代码完整性文件 (MKS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.USP

带有更新的 USACII 扩展字符集的打印机字体 (Pagemaker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.USR

审计跟踪文件 (Pro/Engineer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.USR

用户数据库文件 (Procomm Plus) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.USR

用户数据库文件 (Tour) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.USR

用户数据库文件 (Turbo C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UU

压缩的 ASCII 存档 (UUDE/ENCODE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UU

UU 编码文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UUE

可执行的压缩 ASCII 存档 (UUDE/ENCODE) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UUE

UU 编码文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UW

原始无符号 16 位) 数据文件 (Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.UWF

波形文件 (UltraTracker) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.V

一致性检查支持文件 (ReaGeniX 代码生成器) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.V

主图像输入文件 (Vivid 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.V8

8 位音频文件 (CoVox) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VAL

资产管理文档 (Milliplex OmniValue) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VAL

有效性检查/引用完整性检查 (Paradox for Windows) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VAL

值列表对象文件 (dBase 应用程序生成器) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VAN

动画文件 (VistaPro) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VAP

带注释的语音文件 (通用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VAR

用于数据字典的 ASCII 文本文件 (Sterling Software Groundworks, COOL Business Team Enterprise Model) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VAR

变量文件 (IconAuthor) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VBA

VBase 文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VBP

项目文件 (Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VBR

远程自动注册文件 (Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VBS

脚本文件 (Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VBW

工作区文件 (Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VBX

自定义控件文件 (Microsoft Visual Basic) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VBX

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

.VC

包含颜色定义的包含文件 (Vivid 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VC

电子表格 (VisaCalc) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VCE

未格式化的语音文件 (Natural Microsystems) (NMS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VCE

未格式化的语音文件 (Cool Edit 使用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VCF

配置文件;定义用于 Sense8 的 WorldToolKit (Vevi) 的对象 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VCF

虚拟卡文件 (许多程序使用此扩展名) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VCF

虚拟卡文件 (Netscape) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VCT

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

.VCW

可视化工作台信息文件 (Microsoft Visual C++) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VCX

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

.VDA

图形图像 (通用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VDA

Targa 位图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VDR

绘图文件 (ComputerEasy Draw) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VEL

3D 绘图文件 (CAD( (Ashlar) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VEW

视图文件 (Clipper 5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VEW

视图文件 (Lotus Approach) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VFL

剪贴画文件 (PrintMaster Gold) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VFM

投票表单 (Voter) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VFN

客户的投票表单 (VFN) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VGA

视频图形阵列 (用于在 VGA 显示器上显示的字体类型) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VGA

视频图形阵列 (显示器类型,也定义您的显示器是否符合新的 (1994) SVGA (超级视频图形阵列) (SVGA) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VGD

可视化显示驱动程序 (通用 CADD) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VGR

图形文件 (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VI

图形文件 (Jovian Logic VI) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VI

虚拟仪器文件 (National Instruments LABView) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VIC

图形文件 (Vicar) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VID

Bethesda 视频文件 (Terminator, Future Shock) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VID

位图图形 (YUV12C M-Motion 帧缓冲区) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VID

屏幕设备驱动程序 (Microsoft Word) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VID

Shell 监视器文件 (Microsoft DOS v.5) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VIF

Khoros 可视化图像 (SDSC 图像工具) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VIFF

Khoros 可视化图像 (SDSC 图像工具) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VIK

图形图像 (Viking) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VIR

Norton AntiVirus 和其他程序识别为感染病毒的文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VIS

图形图像文件 (VIS) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VIV

流媒体视频文件 (VivoActive) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VIZ

dVS/dVISE 文件 (Division) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VLB

库文件 (Corel Ventura) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VLM

绘图程序文件 (Vellum, by Ashler) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VM

虚拟内存文件 (Geoworks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VMC

虚拟内存配置文件 (Adobe Acrobat Reader) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VMD

在线视频文件 (Sierra) (Torin's Passage) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VMF

音频文件 (FaxWorks) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VMF

字体特性文件 (Ventura Publishing) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VML

矢量标记语言 (Microsoft Office 2000 使用) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VMS

包含 vms 特定信息的文本文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VO

包含对象定义的包含文件 (Vivid 2.0) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VOB

当前 DVD 上使用的加密视频和音频文件 (数字视频光盘) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VOC

音频文件 (Creative Labs Sound Blaster) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VOC

音频文件 (Quartet) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.voc

音频格式 (Soundblaster 自己的格式)。 From Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VOF

对象文件夹 (VZ Programmer) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VOX

音频文件 (Talking Technology) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VOX

使用 ADPCM <http://WhatIs.techtarget.com/definition/0,,sid9_gci213763,00.html> 编码的 Dialogic 音频文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VOX

格式化语音文件 (Natural Microsystems) (NMS) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VP

出版物 (Ventura Publisher) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VPG

图形图像文件 (VPGraphics) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VQA

视频文件 (Westwood Studios) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VQE

VQ 定位器文件 (Yamaha Sound) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VQF

VQ 文件 (Yamaha Sound) (可能的新的标准) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VQL

VQ 定位器文件 (Yamaha Sound) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VRF

配置文件 (Oracle 7) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VRM

覆盖文件 (Quattro Pro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VRML

一个 VRML 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VRP

项目文件 (VXRexx) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VRS

视频设备驱动程序 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VS

包含表面定义的文件 (Vivid 2.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VSD

绘图文件 (流程图或示意图) (Shapeware Visio) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VSL

下载列表文件 (GetRight) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VSM

仿真模型 (VisSim) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VSN

一个 Windows 9x/NT ViruSafe 版本文件;用于保存目录中所有文件的信息;当文件被访问时,信息会与 VSN 信息进行比较,以确保它们匹配 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VSP

数据打印文件 (Schedule Soft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VSP

图像精灵 (SPX) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VSS

Smartshapes 图像文件 (Shapeware Visio) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VSS

模具文件 (Shapeware Visio) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VST

位图图形文件 (TrueVison Vista) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VST

Targa 位图 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VSW

工作区文件 (Shapeware Visio) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VUE

动画文件 (3D Studio) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VUE

视图文件 (dBase IV) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VUE

视图文件 (Microsoft FoxPro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VW

文本文件 (Volkswriter) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VWP

音频 MetaSound 插件 (VoxWare Audio Compression Toolkit 版本 2.02.61) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VWP

音频插件 (Voxware MetaVoice Toolkit) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VWR

文件查看器 (PC Tools) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.VXD

虚拟设备驱动程序 (Microsoft Windows 9.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.W

单词图表文件 (APPLAUSE) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.W30

打印机字体 (AST TurboLaser) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.W30

打印机字体 (Ventura Publisher) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.W31

启动文件 (Microsoft Windows 3.1) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.W3L

W3Launch 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.W44

用于排序或索引的临时文件 (dBase) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WAB

Outlook 文件 (Microsoft Outlook, Outlook Express) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WAD

<http://WhatIs.techtarget.com/definition/0,,sid9_gci213332,00.html> Doom 游戏的大型文件,包含视频、玩家级别和其他信息 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WAL

纹理文件 (Quake 2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WAS

脚本源代码文件 (Procomm Plus Aspect) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WAV

<http://WhatIs.techtarget.com/definition/0,,sid9_gci213473,00.html> 波形声音 (Microsoft Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.wav

音频格式 (Microsoft Windows 常用的声音文件)。 来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WAX

编译后的脚本文件 (Procomm Plus Aspect) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WB1

笔记本 (QuattroPro for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WB2

电子表格 (QuattroPro for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WB3

文本文件 (QuattroPro for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WBC

图像文件 (Webshots) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WBF

批处理文件 (Microsoft Windows 9.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WBK

备份文件 (Microsoft Word for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WBL

上传文件 (Argo Webload II) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WBR

WordBar 文件 (Crick Software) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WBT

批处理文件 (WinBatch) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WBT

Wordbar 模板 (Crick Software) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WCD

宏令牌列表文件 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WCM

数据传输文件 (Microsoft Works) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WCM

宏 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WCP

产品信息描述文件 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WD2

数据库文件 (Info Select) 由 (Micro Logic) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WDB

数据库文件 (Microsoft Works) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WDF

WebArt 数据文件 (可转换为多种程序使用的数据库文件) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WDG

Warftpd 远程守护进程 <http://searchWebServices.techtarget.com/sDefinition/0,,sid26_gci211888,00.html> 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WEB

Web 文档 (Corel Zara) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WEB

Web 源代码文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WFB

Bank 文件 (Maui/Rio/Monterey) (Turtle Beack WaveFront) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WFD

音频波形 (WaveForm Manager Pro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WFD

鼓组 (Maui/Rio/Monterey)(Turtle Beach WaveFront) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WFL

流程图文件 (Winflow) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WFM

Windows 窗体 (Virtual dBase) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WFN

符号 (Corel Draw) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WFP

程序文件 (Turtle Beach WaveFront)(Maui/Rio/Monterey) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WFT

数据文件 (NICOLET (旧格式), 参见 NRF) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WFX

数据文件 (WinFax) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WG1

工作表 (Lotus 1-2-3/G) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WG2

工作表 (Lotus 1-2-3 for O/S2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WGP

数据文件 (Wild Board Games) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WI

小波压缩位图 (Corel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WID

宽度表 (Ventura Publisher) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WIF

小波图像文件 (参见 WI) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WIL

WinImage 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WIM

无线身份模块 (用于无线应用协议) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WIN

窗口文件 (dBase) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WIN

窗口文件 (Microsoft FoxPro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WIN

窗口首选项文件 (Pro/Engineer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WIS

脚本文件 (Reynolds & Reynolds) (存储数据库查询的结果) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.with

NSREX 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WIZ

页面向导 (Microsoft Publisher) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WIZ

向导文件 (Microsoft Word) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WK1

电子表格 (Lotus 1-2-3 v. 1 和 2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WK3

电子表格 (Lotus 1-2-3 v. 3) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WK4

电子表格 (Lotus 1-2-3 v. 4) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WKB

文档文件 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WKE

电子表格 (Lotus 1-2-3 教育版) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WKQ

电子表格 (Quattro Pro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WKS

文档 (Microsoft Works) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WKS

电子表格 (Symphony 1.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WKS

工作表电子表格 (Lotus 1-2-3) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WKS

工作区文件 (Xlisp) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WLD

REND386/AVRIL 文件 From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WLF

上传文件 (Argo Upload I) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WLK

图形文件 (Virtus Walkthrough) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WLL

加载项文件 (Microsoft) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WMA

Microsoft Windows Media 格式的音频文件 (可以更改为 ASF) Siren (Sonic Foundry) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WMC

启动备份文件 (MathCAD for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WMC

宏文件 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WMC

文本文件 (WordMARC) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WMF

元文件 (Microsoft Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WN

文本文件 (NeXT WriteNow) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WNF

轮廓字体描述文件 (CorelDRAW) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WOA

交换文件 (Microsoft Windows 3.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WOC

组织结构图 (Microsoft Windows OrgChart) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.word

文字处理文档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WOW

音乐模块 (MOD) (Grave Composer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WP

文档文件 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WP4

文档 (WordPerfect for Windows 4.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WP5

文档 (WordPerfect for Windows 5.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WP6

文档 (WordPerfect for Windows 6.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WPA

文字处理器文档 (ACT!) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WPD

演示文件 (WordPerfect for Windows) (ALL) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WPD

文档 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WPF

文档 (Enable) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WPF

传真文档 (WorldPort) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WPF

表单文件 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WPG

图形文件 (Microsoft Word for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WPG

Microsoft Word for Windows 矢量图形 (DrawPerfect) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WPK

宏 (Microsoft Word for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WPM

宏 (Microsoft Word for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WPS

文本文档 (Microsoft Works) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WPT

模板 (Microsoft Word for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WPW

PerfectWorks 文档 (Novell) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WQ!

压缩的电子表格 (QuattroPro) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WQ1

电子表格 (QuattroPro/DOS) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WQ2

电子表格 (QuattroPro 版本 5) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WR1

电子表格 (Symphony 1.1-2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WR1

Symphony 文件 (Lotus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WRD

模板 (Charisma) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WRG

ReGet 文档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WRI

Write 文档 (Windows Write) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WRK

项目文件 (CakeWalk Music Audio) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WRK

电子表格 (Symphony 1.0) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WRL

虚拟现实模型 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WRP

3D 建模文件 (Raindrop Geomagic) (Scandata) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WRP

压缩的 Amiga 存档 (WARP) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WRS

资源文件 (Microsoft Word for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WRZ

另一个 VRML <http://WhatIs.techtarget.com/definition/0,,sid9_gci214153,00.html> 文件ject 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WS

文本文件 (WordStar) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WS1

文档 (WordStar for Windows 版本 1) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WS2

文档 (WordStar for Windows 版本 2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WS3

文档 (WordStar for Windows 版本 3) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WS4

文档 (WordStar for Windows 版本 4) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WS5

文档 (WordStar for Windows 版本 5) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WS6

文档 (WordStar for Windows 版本 6) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WS7

文档 (WordStar for Windows 版本 7) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WSD

文档 (WordStar for Windows 2000) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WSP

工作区文件 (Fortran PowerStation) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WST

文档 (WordStar for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WSZ

皮肤 (WinAmp) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WTA

用于无线电话应用 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WVL

小波压缩位图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WVW

Interleaf WorldView 格式 (一种 PDF 格式) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WWB

文档窗口的按钮栏 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WWK

键盘布局文件 (WordPerfect for Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WWL

加载项文件 (Microsoft Word) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WXD

音乐资源文件 (Relic Entertainment)(Home World) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.WXP

文档文件 (用于 Microsoft Windows 的 EXP) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.X

AVS 图像 (SDSC Image Tool) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.X

源代码文件 (Lex) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.X01

二级索引文件 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.X02

二级索引文件 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.X03

二级索引文件 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.X04

二级索引文件 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.X05

二级索引文件 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.X06

二级索引文件 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.X07

二级索引文件 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.X08

二级索引文件 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.X09

二级索引文件 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.X16

Macromedia Extra (程序扩展), 16 位 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.X32

Macromedia Extra (程序扩展), 32 位 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XAR

Corel Xara 绘图 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XBM

MIME 'X11" 位图图像 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XDL

XML Schema 文件 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XFN

打印机字体文件 (Ventura Publisher) From Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XFN

打印机字体文件 (Xerox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XFT

打印机字体文件 (24 针) (ChiWriter) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XFX

传真文档 (各种) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XHTML

可扩展超文本标记语言 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XI

乐器文件 (FastTracker II) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XI

乐器采样文件 (ScreamTracker) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XIF

图像文件 (Pagis) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XIF

图像文件 (Xerox) (与 TIF 相同) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XIF

扩展图像文件 (ScanSoft),该文件类似于 TIFF,并且是 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XIF

Wang 图像文件 (包含在 Windows 95 中) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XLA

加载项文件 (Microsoft Excel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XLA

存档 (Xlib) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XLB

数据文件 (Microsoft Excel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XLB

工具栏文件 (Microsoft Excel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XLC

图表文件 (Microsoft Excel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XLD

对话框文件 (Microsoft Excel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XLK

备份文件 (Microsoft Excel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XLL

加载项文件 (Microsoft Excel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XLL

动态链接库 (Microsoft Excel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XLM

宏文件 (Microsoft Excel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XLS

工作表文件 (Microsoft Excel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XLT

模板文件 (Microsoft Excel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XLT

转换表 (Lotus 1-2-3) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XLT

转换表 (Procomm Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XLT

转换表 (Symphony) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XLV

VBA 模块 (Microsoft Excel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XLW

工作簿 (Microsoft Excel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XM

音乐模块 (MOD) (Fast Tracker 2) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XMI

压缩的 midi 音乐 (eXtended) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XML

可扩展标记语言 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.xml

XML 源文件。参见 XML。来自 Binh http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XNF

网络文件 (标准) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XNK

快捷方式文件 (Microsoft Exchange) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XON

数据文件 (Axon) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XPM

X 位图格式 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.xpm

XPM 图像文件。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XQT

可执行文件 (Waffle) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XQT

宏文件 (SuperCalc) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XR1

数据文件 (Epic Megagames Xargon) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XRF

交叉引用文件 (通用) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XTB

外部翻译表 (LocoScript) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XTP

数据文件 (Xtree) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XWD

X Window Dump 格式 (SDSC Image Tool) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XWF

Works 文件 (Yamaha XG) (MIDI <http://WhatIs.techtarget.com/definition/0,,sid9_gci212572,00.html> 音序) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XWK

键盘映射文件 (Crosstalk) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XWP

会话文件 (Crosstalk) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XWP

文本文件 (Xerox Writer) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XX

压缩 ASCII 存档 (XXENCODE) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XXE

压缩 ASCII 存档 (XXENCODE) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XXX

XXXX 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XY

文本文件 (XYWrite) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XY3

文档文件 (XYWrite III) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XY4

文档文件 (XYWrite IV) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XYP

文档文件 (XYWrite III Plus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.XYW

文档文件 (XYWrite for Windows 4.x) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Y

压缩 Amiga 存档 (YABBA) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Y

语法文件 (Yaac) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.y

yacc 源文件。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Y01

二级索引文件 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Y02

二级索引文件 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Y03

二级索引文件 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Y04

二级索引文件 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Y05

二级索引文件 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Y06

二级索引文件 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Y07

二级索引文件 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Y08

二级索引文件 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Y09

二级索引文件 (Paradox) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.YAL

剪贴画库 (Arts & Letters) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.YBK

年鉴文件 (Microsoft Encarta) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.YUV

图形文件 (YUV) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.YZ

压缩文件存档 (YAC) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Z

压缩 ASCII 文档 (COMPRESS) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Z

使用 compress 压缩程序压缩的文件。来自 Rute-Users-Guide 可以使用 'uncompress' 实用程序解压缩。 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Z

Unix 文件 压缩 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.Z3

游戏模块 (Infocom) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ZAP

压缩文件 (FileWrangler) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ZAP

软件安装设置文件 (Microsoft Windows) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ZDG

压缩文本文件 (Zview) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ZER

数据文件 (Zerberus) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ZGM

图形文件 (ZenoGraphics) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.zip

使用 pkzip(或 DOS 的 PKZIP.EXE)压缩程序压缩的文件。来自 Rute-Users-Guide http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ZIP

Zip 文件 压缩存档 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ZOM

压缩 Amiga 存档 (ZOOM) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ZOO

早期压缩文件格式 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.ZVD

语音文件 (Zyxel Z-Fax) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.~$~

临时文件 (1ST Reader) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.~AP

AppExpert 项目数据库文件 (Borland C++ 4.5) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.~DE

项目备份文件 (Borland C++ 4.5) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.~MN

菜单备份 (Norton Commander) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

.~PR

项目备份文件 (Terramodel) 来自 Whatis-Extensions http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

/bin

一个包含可执行程序的目录,主要是二进制文件。来自 I-gloss http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

/bin

一个包含可执行程序的目录,其中大部分以二进制文件形式存储。大多数程序都可以在 /bin 和 /usr/bin 目录中找到;但是,用户通常会在私有 bin 目录中保存其他程序,例如 /home/linux/bin。来自 Linux Guide @FirstLinux http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

/dev/null

在 UNIX 上,这是一个可以写入的虚拟文件。写入此文件的数据将被丢弃。它类似于 Windows 机器上的 NUL 文件调用。重点:当入侵者入侵机器时,通常会将日志重定向到 /dev/null。例如,命令 ln -s /dev/null .bash_history 将导致系统停止记录 bash 命令。文化:在白话中,意思与黑洞几乎相同。典型用法:如果您不喜欢我要说的话,请将您的评论定向到 /dev/null。来自 Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

/etc

UNIX 上用于保存大部分配置信息的目录。它大致类似于 Windows 注册表。特别值得关注的是 /etc/passwd 文件,其中存储了所有密码。重点:如果入侵者可以从此目录读取文件,那么他们很可能可以使用这些信息来攻击机器。来自 Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

/etc/hosts

包含主机名到 IP 地址映射列表的文件。在互联网的早期,机器就是这样相互联系的。维护了一个主 hosts 文件并定期下载到机器上。然后 DNS 就出现了。就像退化的阑尾。在 Windows 上,此文件存储在 %SystemRoot%\system32\drivers\etc 中。黑客技巧:如果您可以将文件写入用户的机器,那么您可以将条目添加到他/她的 hosts 文件中,以指向您自己的机器。例如,放入一个 www.microsoft.com 的条目以指向您的机器,然后代理用户的所有连接。这将使您能够执行中间人攻击。来自 Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

/etc/hosts.equiv

在 UNIX 上,“hosts.equiv”文件列出了可以被认为是与此文件“等效”的其他主机。因此,这台机器将“信任”这些其他机器。从列出的机器连接到这台机器的用户不必出示密码,假设这些其他机器已经验证了密码。类比:欧盟(EU)国家之间没有护照检查。您只需在进入第一个欧洲国家时出示护照,一旦进入欧盟,您就可以自由漫游。“hosts.equiv”文件创建了一个类似的机器联盟。黑客技巧:黑客将以该文件为目标。如果他们的目标是机器 A,他们可能会发现 A 信任 B,而 B 可能更容易首先入侵。那时,黑客可以使用 B 上的帐户跳回 A。同样,如果黑客可以写入此文件,他们可以告诉系统信任网络上的任何其他系统(包括黑客自己的机器)。黑客技巧:较旧的软件会对连接的 IP 地址执行反向 DNS 查找。如果黑客控制了 DNS 服务器,他/她可以返回受信任的域名,因此被允许进入系统。另一个较旧的黑客技巧是默认的“+”条目。来自 Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

/etc/passwd

UNIX 文件,其中包含帐户信息,例如用户名、密码、登录目录和默认 shell。系统上的所有普通用户都可以读取此文件。重点:密码是加密的,因此即使每个人都可以读取该文件,也不能自动保证访问系统。但是,像 crack 这样的程序在解密密码方面非常有效。在任何具有多个帐户的系统上,如果黑客获得此文件,则很有可能破解某些帐户。重点:现代 UNIX 系统允许使用影子密码文件,存储在诸如 /etc/shadow 之类只有 root 用户才能访问的位置。正常的密码文件仍然存在,但没有密码信息。这为仍然必须访问密码文件以获取帐户信息,但对密码本身没有兴趣的程序提供了向后兼容性。重点:针对 UNIX 系统的大多数黑客攻击的主要目标是检索密码文件。许多攻击不会直接危及机器,而是能够从机器读取文件,例如此文件。来自 Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

/etc/services

在 UNIX 上,配置文件 /etc/services 将端口号映射到命名服务。重点:它在生活中的作用是让程序可以在其代码中执行 getportbyname() 套接字调用,以便获得它们应该使用的端口。例如,POP3 电子邮件守护程序将执行 getportbyname("pop3"),以检索 pop3 运行的端口号 110。其想法是,如果所有 POP3 守护程序都使用 getportbyname(),那么无论您运行什么 POP3 守护程序,您始终可以通过编辑 /etc/services 重新配置其端口号。误解:此文件不适合找出端口号的含义。如果您想找出程序正在使用的端口,您应该改用程序 lsof 来准确找出哪些端口绑定到哪些进程。如果运行 lsof 不合适,那么您应该在更通用的参考资料中查找端口。来自 Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

0-day (零日)

术语 0-day 漏洞描述的是未公开的漏洞。它描述了精英黑客的工具,他们发现了新的漏洞,并且只与密友分享。它还描述了用于入侵流行服务(常见的嫌疑对象:BIND、FTP 服务、Linux 发行版、Microsoft IIS、Solaris 服务器)的一些新漏洞。许多 0-day 漏洞是在黑客使用它们时被受害者发现的,或者被蜜罐发现的。“0-day”一词描述了漏洞的价值在公开后迅速下降的事实。第二天,它们的价值只有一半。第二天,它们的价值只有 1/4。十天后,它们的价值是第 0 天的 1/1000。这是因为脚本小子迅速在整个互联网的计算机上使用这些漏洞,在其他人可以访问它们之前就入侵了系统。对比:术语 0-day 漏洞描述了发现者本人(或密友)难以使用的漏洞,与脚本小子使用的易于使用的脚本形成对比。例如,缓冲区溢出脚本将经历许多阶段,因为人们试图为目标平台找到正确的偏移量,但最终将成为任何人都可以使用的广谱瞄准射击脚本。重点:0-day 漏洞的危险之一是 BUGTRAQ 露营。黑客发现目标受害者上运行的所有服务,并等待漏洞宣布的第 0 天。届时,黑客将使用新漏洞攻击系统。重点:“0-day”一词描述了社区中的任何信息,无论是序列号、代理列表还是色情网站的密码。一旦此类信息变得广为人知并被大量人利用,受害者就会修复它。信息具有“半衰期”:它越旧,价值就越低。来自 Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

100VG

100 语音级 [技术] 来自 VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

2-Disk Xwindow 嵌入式 Linux

Mungkie Associates Inc. 提供 2-Disk Xwindow 嵌入式 Linux。该发行版旨在演示 Mungkie Associates 的嵌入式设备开发环境,展示可以为小型设备 GUI 系统创建的环境类型。它还旨在在一个磁盘上提供最小的 Linux 基础系统,并在第二个磁盘上提供完全可扩展的 X 系统实现。这两个磁盘可以一起用于最小系统,或者 X 磁盘可以单独用于任何 libc2.1 linux 系统。源代码树在 Debian 上编译,/lib/ 文件直接取自 Debian-2.2.3 发行版。2-disk 系统可免费用于个人用途,但商业用途受到限制。1.4rc802 版本于 2002 年 11 月 6 日发布。1disk1.0 final 版本于 2003 年 1 月 18 日发布。1disk 1.0 更新于 2003 年 2 月 5 日发布。1.0.8 版本(源代码)于 2003 年 5 月 30 日发布。来自 LWN 发行列表 http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

2S2D

双面 - 双密度 (FDD) 来自 VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

3dchess

用于 X11 的 3D 国际象棋 用于 X11R6 的 3 维国际象棋。三个棋盘,96 个棋子和 26 个方向。来自 Debian 3.0r0 APT 3Dwm 是 Linux 的 3D 窗口管理器 来自 Binh http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

3DDDI

3D 设备相关接口 (MS),"3D DDI" 来自 VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

3DRAM

3 维随机存取存储器 (RAM) 来自 VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

3dwm

3dwm 项目正在创建可以在 3D 立方体以及台式计算机中运行的三维工作区管理器。请注意,wm 并非代表术语窗口管理器。这有点误导性;3dwm 不是真正意义上的窗口管理器,而更像是通用的用户环境。系统的窗口管理器功能仅仅是冰山一角;3Dwm 包含用于构建具有三维界面的应用程序的通用原语。来自 3dwm http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

3dwm-clock

3Dwm 应用程序 3Dwm 时钟应用程序 (tdwm-clock) 是第一个即使是远程有用的实际应用程序。它利用 3Dwm Nobel API,包括新的实体建模支持,来创建一个三维模拟时钟,显示当前时间。来自 Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

3dwm-csgclient

3Dwm 客户端 一个使用新的 libsolid 构建的简单客户端。这只是关于 libsolid 如何工作的示例。来自 Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

3dwm-geoclient

3Dwm 客户端 这是一个非常简单的 3Dwm 客户端,它连接到服务器中导出的 GeometryKit,创建一个 Geometry,从本地系统加载 3D 文件(在本例中是一个简单的办公室模型,恰好也是 Rob 的房间),并将其传递给 3Dwm 服务器。3Dwm 服务器将愉快地渲染创建的任何几何图形,因此多次运行 geoclient 将向图形输出添加更多几何图形。请注意,您可能需要缩小(使用“X”键)才能看到图形输出。geoclient 能够打开本机 .raw 文件以及标准 3ds 文件(使用 MeshIO)。换句话说,您可以尝试加载除提供的办公室模型之外的其他文件到 3Dwm 服务器。来自 Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

3dwm-pickclient

3Dwm 客户端 这是一个演示 libzorn 如何工作的示例。来自 Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

3dwm-server

二进制服务器守护程序 此软件包包含显示二进制服务器守护程序。来自 Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

3dwm-texclient

3Dwm 客户端 这是一个用于测试 3Dwm 纹理功能的简单客户端。来自 Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

3dwm-vncclient

3Dwm 客户端 这将打开从 3Dwm 服务器到 VNC 服务器的连接,图形输出将显示在 3Dwm 世界中的单个四边形中(您可能需要缩小才能看到它)。目前,vncclient 不支持与 VNC 窗口的交互(绑定和实际通信代码已实现,仅缺少 3Dwm 端)。来自 Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

3GIP

第三代 . 互联网协议 (org., IP, GPRS, WLAN, 移动系统), "3G.IP" 来自 VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

3GL

第三代语言 来自 VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

3GPP

第三代合作伙伴计划 (org.) 来自 VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

4.2

/for' poynt too'/ 名词。如果没有前缀,这几乎总是指 BSD Unix 版本 4.2。请注意,说“版本 4.2”是缺乏见识的表现,而“发行版 4.2”很少见;该数字本身就成立,或者以更明确的形式 4.2BSD 或(较不常见)BSD 4.2 使用。类似的评论适用于“4.3”、“4.4”以及更早、不太广泛的版本 4.1 和 2.9。来自 Jargon Dictionary http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

44bsd-rdist

4.4BSD rdist。这是来自 4.4BSD Lite 的传统 rdist,带有 FreeBSD 修复程序。它为了与第三方 rdist 实现兼容而提供。这是 4.4BSD rdist 的二进制包。来自 Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

4GL

第四代语言 来自 VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

4GT

4 GB [RAM] 调优 (RAM, GB) 来自 VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

4Suite

4Suite 软件包包含用于 Python 的 XML 相关工具和库,包括 4DOM、4XSLT、4XPath、4RDF 和 4XPointer。4DOM 是万维网联盟 (W3C) 标准 DOMAPI 的实现,用于 HTML 和 XML 内容操作。4DOM 基于正式 DOM 规范中使用的 IDL 提供完整的分布式对象支持。4XSLT 是一个 XSLT 处理器,可用于将 XML 文档呈现为定制和风格化的 HTML,供当前 Web 浏览器使用。4XSLT 还为应用程序提供了一个强大的编程 API,用于对 XML 文档进行低级、定制的转换。4XPath 是一个库,实现了 W3C 的 XPath 语言,用于指示和选择 XML 文档的各个部分。4RDF 是一个用于 RDF 处理的工具包和库。4XPointer 是一个工具包,用于处理 URI 引用的片段标识符,这些标识符定位 Internet 媒体类型 text/xml 的资源。来自 Redhat 8.0 RPM http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

5GL

第五代语言 来自 VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

6tunnel

用于非 IPv6 应用程序的 TCP 代理 6tunnel 允许您将 IPv6 主机提供的服务与仅支持 IPv4 的应用程序一起使用,反之亦然。它可以绑定到您的任何 IPv4 或 IPv6 地址,并将所有数据转发到 IPv4 或 IPv6 主机。例如,它可以用作支持 IPv6 的 IRC 代理。来自 Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

8 字符密码

某些系统(如 Win9x 和 Solaris)将用户密码限制为 8 个字符。重点:此类系统的具有安全意识的用户需要确保他们使用更随机的字符组合,因为他们无法创建长密码。重点:破解此类系统的密码更容易一些。来自 Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

8.3 文件名

与标准 MS-DOS 整理约定对应的文件名,该约定将文件名限制为 8 个字符,可选扩展名限制为 3 个字符。来自 QUECID 这样的限制可能会证明是一个令人恼火的问题,例如在 Windows 和 Linux 机器等异构网络之间传输文件时。由于旧版本的 Windows 仅支持 8.3 样式文件名,因此传输到它的文件将被截断。例如,“C:\Program Files”可能会显示为“C:\Progra~1” 来自 Binh http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

802.11

用于射频无线数据传输和联网的标准协议。也称为 Wi-Fi。来自 Redhat-9-Glossary http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

80211HR

802.11 高速率 (IEEE, WLAN), "802.11/HR" 来自 VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

822-date

以 RFC822 格式打印日期和时间的命令 来自 whatis http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

8PSK

8 相位偏移键控 (EDGE, 移动系统) 来自 VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

8VSB

8-残留边带, "8-VSB" 来自 VERA http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

9menu

从 shell 创建 X 菜单。这是 9menu,一个简单的程序,允许您从 shell 创建 X 菜单,其中每个菜单项将运行一个命令。9menu 旨在与 9wm 一起使用,但可以与任何其他窗口管理器一起使用。来自 Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

9wm

Plan 9 窗口管理器 8-1/2 的模拟。9wm 是一个 X 窗口管理器,它试图在 X 施加的约束范围内尽可能地模拟 Plan 9 窗口管理器 8-1/2。它提供了一个简单而舒适的用户界面,没有华丽的装饰或标题栏。或图标。并且它是点击输入式的。来自 Debian 3.0r0 APT http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

[

检查文件类型并比较值 来自 whatis http://www.tldp.org/LDP/Linux-Dictionary/html/index.html

~user

在 UNIX 上,可以使用波浪号 (~) 后跟其登录名来引用主目录。例如,我计算机上的 "ls ~rob" 将列出 "/home/rob" 中的所有文件。重点:Web 服务器通常允许以这种方式访问用户的目录。一个例子是 http://www.robertgraham.com/~rob。重点:互联网上的一个大漏洞是人们意外地公开信息。例如,.bash_history 文件是一个人目录中的隐藏文件,其中包含他们输入到 shell 中的所有命令的完整文本(假设他们的 shell 是 bash,这是 Linux 上最流行的 shell)。来自 Hacking-Lexicon http://www.tldp.org/LDP/Linux-Dictionary/html/index.html