1
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CentOSAdvent Calendar 2017

Day 7

CentOS のショートカットキー

Last updated at Posted at 2017-12-06

ショートカットキー

CentOS で標準の Bash で利用できるショートカットキー(キーバインド)1 をまとめた。

補完

Tab (complete)

コマンドやファイル名等の補完。Ctrl + i でも同様。
コマンドライン上で Tab キーを押下すると、テキストの補完を試みる。カーソル前の文字が $ で始まる場合は変数を、~ で始まる場合はユーザー名を、@ で始まる場合はホスト名を、そしてコマンド(エイリアスと関数を含む)を順番にテキストの補完を試みる。いずれも一致しない場合、ファイル名の補完が試行される。

bash-completion

yum -y install bash-completion
yum -y install epel-release && yum -y install bash-completion-extras

コマンドごとのオプションその他の補完内容が拡充される。
bash-completion は標準リポジトリで、bash-completion-extras は EPEL リポジトリで利用できる。

Ctrl + [ - . (insert-last-argument)

直前のコマンドの最後の引数を補完。Ctrl + [ - _ でも同様。

コマンド履歴

Ctrl + r (reverse-search-history)

コマンド履歴検索 (reverse-i-search)
(reverse-i-search)`': と表示された後に文字を入力すると新しい履歴から順に部分一致で絞り込んでくれる。
検索文字列を入力後に再度 Ctrl + r を入力するとさらに過去の履歴が表示される。

Ctrl + s (forward-search-history)

コマンド履歴検索 (i-search)

i-search の有効化

echo "stty -ixon" > /etc/profile.d/stty.sh && source /etc/profile.d/stty.sh

CentOS のデフォルトでは Ctrl + s には端末のロックが割り当てられており Ctrl + q を入力するまで入力を受け付けなくなるので、この割り当てを解除する必要がある。

stty -ixon の代わりに stty stop undef を実行しても同様。

一つ前のコマンド履歴を表示。Ctrl + p (previous-history) でも同様。

一つ後のコマンド履歴を表示。Ctrl + n (next-history) でも同様。

ESC - < (Shift + ,)

コマンド履歴の先頭に移動。

ESC - > (Shift + .)

コマンド履歴の最後に移動。

カーソル移動

Ctrl + a (beginning-of-line / ^A (Start of Heading))

行頭に移動

Ctrl + e (end-of-line)

行末に移動

Ctrl + [ - b (backward-word)

前の単語に移動

Ctrl + [ - f (forward-word)

次の単語に移動

Ctrl + ] - (search character) (character-search)

カーソル以降の指定文字へ移動。

Ctrl + [ - Ctrl + ] - (search character) (character-search-backward)

カーソル以前の指定文字へ移動。

削除

Ctrl + w (unix-word-rubout)

直前のスペースまで削除。

Ctrl + r で過去のコマンドを呼び出した後に使うことでオプションを書き換えて実行することができて便利。

Ctrl + [ - DEL (backward-kill-word)

直前の単語を削除。Ctrl + [ - Ctrl + h (^H (Backspace)) でも同様。

Ctrl + [ - d (kill-word)

直後の単語を削除。

Ctrl + u (unix-line-discard)

カーソル以前の文字を削除。

Ctrl + k (kill-line)

カーソル以降の文字を削除。

Ctrl + y (yank)

削除した文字を貼り付ける。

その他

Ctrl + _ (undo)

元に戻す。Ctrl + x - Ctrl + u でも同様。

Ctrl + l (clear-screen)

clear コマンドと同様。

Ctrl + x - Ctrl + v

Bash のバージョンを出力。

Ctrl + c

SIGINT シグナルを送信。

Ctrl + z

SIGTSTP シグナルを送信。

iTerm2 (macOS)

+ t

新しいタブを開く。

+ d

画面を左右に分割。

shift + + d

画面を上下に分割。

+ w

タブまたは分割画面を閉じる。

+ /

タブの移動。

option + + / / /

分割画面の移動。

shift + + e

タイムスタンプを表示。

option + + ;

カーソルガイドを表示。(カーソルのある行を反転する)

  1. https://www.gnu.org/software/bash/manual/html_node/Bindable-Readline-Commands.html

1
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?