(1)实验路径:/test_AAA_YY/work7-1/路径下新建AAA_01和AAA_02文件,使用vi/vim打开AAA_01,并在其中输入以下内容,保存退出;“Application of Linux operating system” (2)使用vi/vim打开AAA_02,在其中输入:“My name is AAA,I‘m learning the course”,随后将AAA_01中内容插入到其后,保存退出
时间: 2023-07-14 07:12:28 浏览: 92
以下是实验路径的具体操作步骤:
1. 打开终端(Terminal),进入/test_AAA_YY/work7-1/路径下,可以使用cd命令实现:
```
cd /test_AAA_YY/work7-1/
```
2. 新建AAA_01和AAA_02文件,可以使用touch命令实现:
```
touch AAA_01 AAA_02
```
3. 使用vi/vim打开AAA_01并输入“Application of Linux operating system”,可以使用vi或vim命令实现:
```
vi AAA_01
```
进入编辑模式(按下i键),输入“Application of Linux operating system”,编辑完成后,按下Esc键退出编辑模式,输入:wq保存并退出。
4. 使用vi/vim打开AAA_02文件,并输入“My name is AAA,I'm learning the course”,可以使用vi或vim命令实现:
```
vi AAA_02
```
进入编辑模式(按下i键),输入“My name is AAA,I'm learning the course”,编辑完成后,按下Esc键退出编辑模式。
5. 将AAA_01中的内容插入到AAA_02文件中,可以使用vi/vim命令实现:
```
vi AAA_02
```
在编辑模式下,将光标移动到第二行末尾处,输入以下命令:
```
:r AAA_01
```
该命令的含义是将AAA_01文件中的内容读入当前编辑的文件中,即将“Application of Linux operating system”插入到AAA_02文件的第二行之后。
编辑完成后,按下Esc键退出编辑模式,输入:wq保存并退出。
阅读全文