0
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.

ターミナルを使う時に知っておくと便利

Posted at

ターミナルコマンド編

ターミナルでコマンドを編集する時によく使うコマンドを紹介します。

cursorの移動

  • Ctrl+A 一番最初に移動
  • Ctrl+E 一番最後に移動
  • Ctrl+Left Arrow Key 1文字ずつ後ろに戻る
  • Ctrl+Right Arrow Key1文字ずつ前へ進む

削除

  • Ctrl+K cursorから最後まで削除
  • Ctrl+X+Backspace Key cursorから前のすべて削除

viエディター編

viを使う時によく使うコマンドを紹介します。

cursorの移動

  • ^ 一番最初に移動
  • $ = Shift+4 一番最後に移動
  • b 1文字ずつ後ろに戻る
  • w1文字ずつ前へ進む

削除

  • d+$ cursorから最後まで削除
  • d+^ cursorから前のすべて削除
  • :d or dd cursorのある行の削除
  • :d5 or 5dd cursorから下の5行の削除

####下記もよく使います

  • :set number
  • :set nonumber
  • :set autoindent
  • :set noautoindent
  • /検索したい文字列
0
0
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
0
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?