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.

初級:ターミナルのコマンドメモ

Last updated at Posted at 2021-08-04

##位置や移動に関するコマンド

  • pwd:現在いるディレクトリを知る
  • ls:現在いるディレクトリにあるフォルダやファイルの一覧を確認する
  • cd ディレクトリ名:「ディレクトリ名」に移動(change directoryの略)
  • cd ..:一つ親のディレクトリに移動(change directoryの略)
  • cd:何も位置を指定せずに、cdを実行するとホームディレクトリに移動できる

##位置指定(絶対位置・相対位置など)に関するコマンド

  • .. :【相対位置】一つ親のディレクトリを指定する

##新規作成に関するコマンド

  • touch 任意のファイル名:「任意のファイル名」の新規ファイルを作成
  • mkdir 任意のディレクトリ名:「任意のディレクトリ名」の新規フォルダ(ディレクトリ)を作成(make directoryの略)

##ファイルやディレクトリを操作するコマンド

  • cat ファイル名:「ファイル名」の中身を見る
  • mv ファイル名 ディレクトリ名:現在いるディレクトリにある「ファイル名」を「ディレクトリ名」に移す
  • mv ディレクトリ名 移動先のディレクトリ名:現在いるディレクトリにある「ディレクトリ名」を「ディレクトリ名」に移す
  • mv mv ファイル名 新しいファイル名:現在いるディレクトリにある「ファイル名」を「新しいファイル名」に変更する
  • cp コピーするファイル名 新しいファイル名:「コピーするファイル名」を、「新しいファイル名」でコピー版を作成する
  • cp -r コピーするディレクトリ名 新しいディレクトリ名:-rを付けることで、cpはディレクトリもコピーできるようになる(ディレクトリの中身も同時にコピーされる)
  • rm ファイル名:「ファイル名」を削除する
  • rm -r ディレクトリ名:-r を付けることで「ディレクトリ名」を削除できる
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?