0
1

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.

Linuxコマンド

Last updated at Posted at 2019-12-21

勉強したことをメモ

【基本コマンド】
・pwd(Print Working Directory)
 今いるディレクトリの表示

$ pwd
 /home/test

・mkdir(Make Directory)
 新規ディレクトリを作成

$ mkdir test(作成したいディレクトリ名)

・cd(Change Directory)
 ディレクトリを移動

$ cd test(移動したいディレクトリ名)

・cd ..
1つ上のディレクトリに移動

$ cd ..

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

$ cd

・ls(LiSt derectory contents)
ディレクトリの中身を表示

$ ls
test/

・touch
 ファイルを作成

$ touch hello.rb(作成したいファイル名)
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?