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?

【L4への道】Terminal編

Last updated at Posted at 2025-04-07

変更履歴

  • 2025/05/07:[Ctrl] + [U]、[Ctrl] + [A]、[Ctrl] + [K]のショートカットを追加。

概要

世界一流エンジニアの思考法 牛尾剛【著】
の記事のTerminal編として、投稿。
なお、OSは、MacOSに対応。

L4としたい内容

[command] + [L]

ターミナルのスクリーンをクリア。

[command] + [C]

実行中のプロセスを中断。

cdコマンド

  • ユーザーのホームディレクトリ(例: /Users/username)に移動。
cd
  • 現在のディレクトリの一つ上のディレクトリに移動。
cd ..
  • 直前のディレクトリに戻る。
cd -

[Ctrl] + [U]

コマンドラインのカーソルから左側の入力を削除

[Ctrl] + [A]

コマンドラインのカーソルから左側の入力を削除

[Ctrl] + [K]

コマンドラインのカーソルから右側の入力を削除

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?