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?

Linux操作 基本

Last updated at Posted at 2025-01-18

Linuxコマンドをいちいち調べるのが面倒なため自分用にメモ

ディレクトリ操作

カレントディレクトリの確認

$ pwd
/home/ubuntu

ディレクトリの中身確認

$ ls
bin   dev  home  lib64  mnt  proc  run   srv  tmp  var

ディレクトリ移動

絶対パス

$ cd /home/ubuntu

相対パス

$ cd ./home/ubuntu
$ cd home/ubuntu

ホームディレクトリに移動

$ cd
$ cd ~
$ cd /home/ユーザー名

一つ前のカレントディレクトリに移動

$ cd -

コマンドライン操作

カーソルの移動

操作 cmd 説明
後方に移動 ctrl + b 矢印キー(←)と同じ
前方に移動 ctrl + f 矢印キー(→)と同じ
行頭に移動 ctrl + a コマンドの一番左に移動
行末に移動 ctrl + e コマンドの一番右に移動

文字の削除

操作 cmd 説明
1単語の削除 ctrl + w 単語単位で削除

切り取り(カット)とペースト(ヤンク)

操作 cmd 説明
カーソルから行末を切り取り ctrl + k -
カーソルから行頭を切り取り ctrl + u -
ペースト ctrl + y -
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?