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?

ターミナルコマンド : [新卒時代に戻って学び直すシリーズ]

Last updated at Posted at 2024-12-22

基本的なターミナルコマンド一覧

📂 ディレクトリ操作

  • pwd
    • 現在の作業ディレクトリを確認する
  • cd ~(チルダ-)
    • ホームディレクトリに移動する
  • cd ..
    • 現在のディレクトリから一つ上の階層に移動する
  • ls
    • ファイルやディレクトリの一覧を表示するときに使うコマンド
  • mkdir
    • ディレクトリを作成すること
  • touch
    • ファイルを作成すること
  • mv 移動したいファイル ./移動したいディレクトリ
    • ファイルを移動させる
    • ./というのは、現在の作業ディレクトリ
  • mv リネームしたいファイル リネームした後のファイル
    • ファイル名を変更できる
  • code .
    • VSCodeを開く
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?