zoukankan      html  css  js  c++  java
  • Linux 终端 Bash 常用快捷键介绍及经验

    1. 最重要的自动补全

    命令 解释
    Tab 自动补全

    不用多说,自动补全可以节省大量时间

    2. 编辑跳转

    命令 解释
    Ctrl + A 跳转到当前行首
    Ctrl + E 跳转到当前行末
    Alt + F 将光标在当前行上向后移动一个单词
    Alt + B 将光标在当前行上向前移动一个单词
    Ctrl + W 删除当前光标前的一个单词
    Ctrl + K 删除当前光标后的内容
    Ctrl + U 清除整行
    Ctrl + L 清屏,类似于 clear 命令
    Ctrl + H 退格,类似于 backspace
    Ctrl + T 将当前光标前的两个字符互换位置
    Esc + T 将当前光标前的两个单词互换位置

    Ctrl + WCtrl + U 相当常用。拼写错是很常见的事。

    Ctrl + L 也不用多说。

    Alt + FAlt + B 敝人也相当常用。这两个键用的是 Alt 而不是 Ctrl 键,所以在 Mac 的终端里会有问题。解决办法是在 偏好设置 - 描述文件 - 键盘 里,将 将 Option 键用作 Meta 键 选项打勾就行了。

    3. 进程相关

    命令 解释
    Ctrl + C 终止当前进程
    Ctrl + Z 将当前进程在后台挂起
    Ctrl + D 退出当前 Shell,类似于 exit 命令

    Ctrl + C 是向当前运行的进程发送 SIGINT 信号,终止进程。

    SIGINT - This signal is the same as pressing ctrl-c. On some systems, "delete" + "break" sends the same signal to the process. The process is interrupted and stopped. However, the process can ignore this signal.

    Ctrl + Z 并不结束进程,而是挂起在后台。之后仍然可以通过 fg 命令恢复。对应的信号是 SIGTSTP

    SIGTSTP - This signal is like pressing ctrl-z. This makes a request to the terminal containing the process to ask the process to stop temporarily. The process can ignore the request.

    4. 搜索使用过的命令(特别推荐)

    命令 解释
    Ctrl + R 用于搜索之前使用过的命令

    经常看见别人找之前敲的命令会用 history,其实已经有现成的快捷键可以用。

    按下 Ctrl + R 之后,输入查询的关键字,如果不符合,可以继续按 Ctrl + R 进行遍历。

    这个命令其实也是通过 history 记录来查询的。如果不喜欢这种方式,可以直接 history | grep xxx 也是不错的。

  • 相关阅读:
    TypeError: Object(…) is not a function
    解决 OSError: [WinError 126] 找不到指定的模块
    LeetCode——和等于 k 的最长子数组长度
    LeetCode——判断子序列
    LeetCode——递增的三元子序列
    LeetCode——字符串相乘
    LeetCode——课程安排 IV
    LeetCode——最小移动次数使数组元素相等
    同源时钟、同相位时钟、同时钟域
    C++ 创建动态二维数组 使用vect<vec> 并初始化为0
  • 原文地址:https://www.cnblogs.com/snowInPluto/p/6374296.html
Copyright © 2011-2022 走看看