edit (允许查看、创建或修改文件)

舞夕之 发表于 2020-06-19 15:38
浏览次数:
在手机上阅读

MS-DOS文本编辑器edit允许您查看、创建或修改计算机上的任何文本文件。

Edit命令是传统的16位程序,与64位操作系统不兼容。因此,64位版本的Windows不会随编辑命令一起安装,也不能运行。在64位Windows系统上,请改用记事本编辑文件。

The edit command is a legacy 16-bit program, which is incompatible with 64-bit operating systems. Therefore, 64-bit versions of Windows do not come installed with, and cannot run, the edit command. On 64-bit Windows systems, use Notepad to edit files instead. See: Why is the edit command missing in Windows?

查看英文版

目录

1 edit 运行系统环境

2 edit 语法

3 edit 示例

4 补充资料

edit 运行系统环境

Windows 95

Windows 98

Windows xp

Windows vista

Windows 2000

Windows 7

MS-DOS 5.0 及以上版本

Windows NT

Windows ME

edit 语法

EDIT [/B] [/H] [/R] [/S] [/] [/?] [FileName...]
/B 强制使用单色模式。
/H 显示硬件可能的最大行数。
/R 以只读模式加载文件。
/S 强制使用短文件名。
/ 加载二进制文件,将行换行为字符宽度。
/? 显示命令行选项的摘要。
[FileName...] 指定要加载的初始文件。可以提供通配符和多个文件规格。
EDIT [/B] [/H] [/R] [/S] [/] [/?] [FileName...]
/B Forces monochrome mode.
/H Displays the maximum number of lines possible for your hardware.
/R Load file(s) in read-only mode.
/S Forces the use of short file names.
/ Load binary file(s), wrapping lines to  characters wide.
/? Display a summary of command line options.
[FileName...] Specifies initial files(s) to load. Wildcards and multiple file specs can be given.

查看英文版

查看中文版

edit 示例

edit c:\autoexec.bat

打开要编辑的文件c:\autoexec.bat(如果存在)。如果该文件不存在,则会显示一个空白的蓝屏。

Using "copy con"

如果您运行的是MS-DOS 4.x版或更低版本,或者在硬盘上找不到edit.com,也可以使用以下命令创建文件。

copy con FileName

输入上述命令后,将创建一个具有指定名称的文件。

一旦您输入了要放在文件中的所有行,请按住Ctrl+Z。一旦在屏幕上看到“^Z”,按Enter即可复制一个文件。

使用edit创建新文件

使用edit,还可以创建新文件。例如,如果您想创建一个名为myfile.txt的文件,您可以输入以下命令。

edit myfile.txt

此命令将弹出一个空白edit屏幕。键入文本并保存文件,然后myfile.txt文件将使用您输入的文本创建。

edit c:\autoexec.bat

Open the file c:\autoexec.bat to be edited, if it exists. If the file does not exist, a blank blue screen is shown.

Using "copy con"

If you are running an MS-DOS version 4.x or lower or you cannot find edit.com on your hard drive, you can also use the following command to create a file.

copy con FileName

Once you have entered the command above, a file with the name specified is created.

Once you have typed all the lines you want to be in the file, press and hold Ctrl+Z. Once you see "^Z" on the screen, press Enter and one file should be copied.

Using edit to create a new file

Using edit, you can also create a new file. For example, if you wanted to create a file called myfile.txt, you would type the command below.

edit myfile.txt

This command would bring up a blank edit screen. Type your text and save the file, and myfile.txt will be created with the text you entered.

如果您使用的是在64位处理器下运行的新版本的Windows,则edit命令不会起作用。

If you are using new versions of Windows running under a 64-bit processor, the edit command no longer works.

查看英文版

查看中文版

补充资料

  • Edit只能打开最多65,280行的文件。
  • 如果在MS-DOS或Windows命令行中未加载鼠标驱动程序,则可能没有鼠标支持。仍然可以使用快捷键导航编辑器,如下面的列表所示。
  • 按Alt键可以快速浏览edit,而无需记住下面列出的所有命令。

edit中可用的命令

Home 将光标移动到行首
End 将光标移动到行尾
Ctrl+Up 向上滚动一行
Ctrl+Down 向下滚动一行
PageUp 向上滚动一个屏幕
PageDown 向下滚动一个屏幕
Ctrl+PageUp 向左滚动一个屏幕
Ctrl+PageDown 向右滚动一个屏幕
Ctrl+Home 滚动到文档顶部
Ctrl+End 滚动到文档底部
Ctrl+Left 往左移一个字
Ctrl+Right 右移一个词
Enter 在光标下移后开始新行或移动文本
Delete (Del) 删除光标所在的一个字符或当前选定的文本
Backspace 删除光标前的一个字符
Tab 将光标或文本移动到下一个制表位,如果位于第一个字符,则缩进行
Insert 在插入模式和覆盖模式之间切换
Ctrl+Y 删除当前行
Ctrl+V 粘贴缓冲区中当前的内容(如果有)
Ctrl+P 允许将特殊字符插入到edit中
Shift 将shift与上述任何滚动或移动命令结合使用都会突出显示文本,例如Ctrl+shift+Right
Ctrl+C 将当前选定的文本复制到缓冲区
Ctrl+X 将当前选定的文本剪切到缓冲区
Shift+Tab 删除选定行上的缩进
Ctrl+Q+F 查找文本
Ctrl+Q+A 查找和替换文本
F3 重复上次搜索
F6 切换到下一个编辑窗口(如果有)
Ctrl+F6 打开新的编辑窗口
Ctrl+F4 关闭第二个编辑窗口
Ctrl+F8 调整编辑窗口的大小
F1 显示帮助
  • Edit is only able to open a file with a maximum of 65,280 lines.
  • If your mouse drivers are not loaded while in MS-DOS or the Windows command line, you may have no mouse support. It is still possible to navigate the Editor using shortcut keys as seen in the below list.
  • Pressing Alt allows you to quickly navigate through edit without having to memorize all the commands listed below.
Commands available in edit
Home Move cursor to the beginning of the line.
End Move cursor to the end of the line.
Ctrl+Up Scroll up one line.
Ctrl+Down Scroll down one line.
PageUp Scroll up one screen.
PageDown Scroll down one screen.
Ctrl+PageUp Scroll left one screen.
Ctrl+PageDown Scroll right one screen.
Ctrl+Home Scroll to the top of the document.
Ctrl+End Scroll to the bottom of the document.
Ctrl+Left Move left one word.
Ctrl+Right Move right one word.
Enter Starts a new line or moves text after cursor down.
Delete (Del) Deletes one character that cursor is on or currently selected text.
Backspace Deletes one character before the cursor.
Tab Moves cursor or text to the next tab stop, or indents line if at first character.
Insert Switch between insert and overwrite modes.
Ctrl+Y Deletes the current line.
Ctrl+V Pastes contents currently in the buffer, if any.
Ctrl+P Allows special characters to be inserted into edit.
Shift Using shift in combination with any of the above scrolling or moving commands highlights text, such as Ctrl+Shift+Right.
Ctrl+C Copies currently selected text into the buffer.
Ctrl+X Cuts the currently selected text into the buffer.
Shift+Tab Removes indents on the selected line.
Ctrl+Q+F Find text.
Ctrl+Q+A Find and replace text.
F3 Repeat the last search.
F6 Switch to the next edit window, if any.
Ctrl+F6 Open new edit window.
Ctrl+F4 Closes second edit window.
Ctrl+F8 Resizes edit window.
F1 Displays help.

查看英文版

查看中文版

其他命令行

echo | edlin | emm 386 | enable | endlocal | erase | exit | expand | extract |

如此好文,分享给朋友
发表评论
验证码:
评论列表
共0条