1
0

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 3 years have passed since last update.

linuxショートカットキー一覧

Last updated at Posted at 2021-07-20

####コマンド入力系

コマンド履歴を検索する
Ctrl + r

コマンド履歴を中止する
Ctrl + g

行頭に移動する
Ctrl + a

行末に移動する
Ctrl + e

カーソル左の全てを削除する
Ctrl + u

カーソル右の全てを削除する
Ctrl + k

カーソル左の一単語を削除する
Ctrl + w

####vi

一番下にいく
Shift + g

一番上にいく
gg

一番下から検索する
?hoge

一番上から検索する
/hoge

上から大文字小文字区別せず検索する
/hoge\c

下から大文字小文字区別せず検索する
?hoge\c

検索を止める
ESC 2回

一括置換する
:%s/hoge/fuga/g

一つ戻る
u

やり直す
Ctrl + r

右にある一単語を削除する
dw

一行削除する
dd

一行コピーする
yy

コピーした行を一行下に挿入する
p

vi ショートカットキー参考サイト
https://uguisu.skr.jp/Windows/vi.html

1
0
1

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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?