Bash 的常用快捷鍵與歷史由來

剛剛接觸 bash 的人總會有些迷茫,加之不熟練導致其輸入效率很低。很多新手爲了修改前面一個單詞的拼寫錯誤就不得不將後面的內容一併刪除,這時候學會一些簡單的快捷鍵勢必可以提升效率。筆者希望通過本篇文章整理一些 bash 的常用快捷方式,順帶介紹一些快捷鍵的歷史,希望能對各位看官有所幫助。

注:本篇僅使用日常用語陳述,其術語使用並不一定精準,技術細節請參閱官方文檔。

需要着重說明的是,文中有時會將 shellterminal 等概念混用,如果想有更深入的瞭解請查看以下回答:

其實 bash 中的很多快捷鍵並不需要特意去學,如果對 emacs 有所瞭解的話就不難發現 bash 的快捷鍵和 emacs 的如出一轍。這其實並非巧合,bash 默認的編輯模式就是 emacs mode。當然,對於喜歡 vi 的用戶,bash 也提供了 vi mode(準確的來說,vi modeemacs mode 是得益於 GNU Readline)。使用方法就是在 .bashrc 中加入:

set -o vi

bash 中常用的一些 emacs 快捷方式有:

ctrl-a  # Move cursor to beginning of line
ctrl-e  # Move cursor to end of line
meta-b  # Move cursor back one word
meta-f  # Move cursor forward one word
ctrl-w  # Cut the last word
ctrl-u  # Cut everything before the cursor
ctrl-k  # Cut everything after the cursor
ctrl-y  # Paste the last thing to be cut
ctrl-_  # Undo
ctrl-r  # Incremental search backward
ctrl-g  # Quitting and Aborting

bash 中常用的一些 vi 快捷方式有:

h       # Move cursor left
l       # Move cursor right
b       # Move cursor back one word
w       # Move cursor forward one word
A       # Move cursor to end of line and put in insert mode
0       # (zero) Move cursor to beginning of line (doesn't put in insert mode)
i       # Put into insert mode at current position
a       # Put into insert mode after current position
dd      # Delete line (saved for pasting)
D       # Delete text after current cursor position (saved for pasting)
p       # Paste text that was deleted
j       # Move up through history commands
k       # Move down through history commands
u       # Undo

以上部分參考自:Emacs and Vi modes in Bash

順便一提,如果 viemacs 都不會的話,不如趁機學一個,熟練之後應該會對提升文字工作的處理效率大有裨益。如果有興趣學習 vim 可以查看筆者的文章:「Vim 入門指南:與鍵盤最優雅的距離」

除了上面說的這些便於編輯文字的快捷鍵,還有很多其它有趣的快捷鍵,有些按鍵的使用甚至可以追溯到使用打字機的時代。那麼就讓筆者用情景再現的方式來分別介紹一下:

如何停止程式?

在使用 bash 的過程中,我們很可能遇到輸入甚至執行錯命令的情況。筆者最初接觸 bash 的時候往往不知所措,尤其是卡在沒有終止的 loop 或者不知道該按什麼按鍵才能繼續的命令中,這時候筆者只能選擇關閉終端(Terminal),甚至是強制關機。通常情況退出的方法非常簡單,我們只需要掌握如下兩個快捷鍵:

具體原理可以參考這兩篇文章:

爲什麼按鍵都沒有反饋?

剛剛接觸 bash 的時候有一件比無法停止程式更令人抓狂的事情,那就是終端在毫無徵兆的情況下無法輸入任何東西,即使使用上面提到的兩個快捷鍵也全然沒有響應。這種情況讓筆者一度以爲自己的電腦或者鍵盤壞了。

不過不用擔心,發生這種情況很可能是誤觸了 <Ctrl-S>,這個時候不妨嘗試一下通過按下 <Ctrl-Q> 來「解鎖」。其實在按下 <Ctrl-S> 後,終端會一直記錄我們所輸入的內容,然後在按下 <Ctrl-Q> 的那一刻,所有的內容就一起輸入進來了。這項功能現在看起來好像意義不大,甚至有點影響使用體驗,那爲什麼要設計它呢?下面引用這篇回答

Long before there were computers, there were teleprinters (a.k.a. teletypewriters, a.k.a. teletypes). Think of them as roughly the same technology as a telegraph, but with some type of keyboard and some type of printer attached to them.

Because teletypes already existed when computers were first being built, and because computers at the time were room-sized, teletypes became a convenient user interface to the first computers – type in a command, hit the send button, wait for a while, and the output of the command is printed to a sheet of paper in front of you.

Software flow control originated around this era – if the printer couldn't print as fast as the teletype was receiving data, for instance, the teletype could send an XOFF flow control command (Ctrl+S) to the remote side saying "Stop transmitting for now", and then could send the XON flow control command (Ctrl+Q) to the remote side saying "I've caught up, please continue".

And this usage survives in Unix because modern terminal emulators are emulating physical terminals (like the vt100) which themselves were (in some ways) emulating teletypes.

屏幕內容太多了應該如何清除?

使用 <Ctrl-L> 便可以清除屏幕上的內容(但其實也就只是將顯示的內容清除了而已,向上翻頁依然是可以看到內容的,所以千萬不要想着用這種方法隱藏什麼信息啊 (¬◡¬)✧)。這項功能也要聯繫到以前打字機的使用,最早的打字機將文字印在紙張上的時候,紙張和打字機會發生相對位移,這個快捷鍵就可以在替換紙張的時候幫助打字機快速歸位。

具體原理可以參考這篇文章:

希望這些內容能夠提升諸位使用 bash 的體驗:)