勉強したことをメモ
【基本コマンド】
・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(作成したいファイル名)