Skip to content

Commit

Permalink
fix: 05-drive (#20)
Browse files Browse the repository at this point in the history
Ctrl+C and Ctrl+Z do not force program to quit or suspend.
  • Loading branch information
000lbh authored Nov 3, 2024
1 parent 541a70c commit f2ce941
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions basic/05-drive-your-computer-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -401,8 +401,8 @@ alias c++='c++-14'
在课程中,我们会经常和终端打交道。这里介绍一些常用快捷键:

- `Ctrl+Shift+C/V`:终端中的复制和粘贴。注意,它与常用的复制粘贴快捷键不同。在 Windows 中,你也可以直接选中文本,然后右键复制。
- `Ctrl+C`强制终止程序并释放内存
- `Ctrl+Z`强制暂停程序,不释放内存。
- `Ctrl+C`请求终止程序并释放内存。程序也可以选择做一些清理之后退出或者不响应此操作
- `Ctrl+Z`请求暂停程序,不释放内存,后续可以恢复执行。程序同样可以做清理或者不响应此操作

其它快捷键:

Expand Down

0 comments on commit f2ce941

Please sign in to comment.