1
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.

#1 Command Line

Last updated at Posted at 2020-03-19

touch

ファイル作成

~$ touch sample.txt

cat

ファイルの中身を表示する
※ 存在しないファイルを指定するとエラーが出力される。

~$ cat sample.txt

mkdir

新しいフォルダ作成
※ make directoryの力

~$ mkdir sample

cd

ディレクトリを移動する
※ change directoryの略

~$ cd sample
~$ cd ..
~$ cd
  1. sampleディレクトリへ移動
  2. 親ディレクトリへ移動
  3. ホームディレクトリへ移動

pwd

作業中のディレクトリを把握する
※ print working directoryの略

~$ pwd

ls

現ディレクトリの中身を確認する
※ list の略

~$ ls

mv

ファイル/ディレクトリを移動させる。ファイル名を変える
※ moveの略

~$ mv sample.txt sample
~$ mv sample1 sample2
~$ mv sample1.txt sample10.txt
  1. sample.txtをsampleディレクトリへ移動させる
  2. sample1ディレクトリを、sample2ディレクトリへ移動させる
  3. sample1.txtをsample10.txtに名前を変更する

cp

ファイルのコピーを行う
※ copyの略

~$ cp sample.txt sample10.txt
~$ cp -r sample sample10
  1. sample.txtのコピーをsample10.txtというファイル名で作成する
  2. sampleディレクトリのコピーをsample10というディレクトリ名で作成する

rm

ファイル/ディレクトリを削除する
※ removeの略

~$ rm sample.txt
~$ rm -r sample
  1. sample.txtを削除する
  2. sampleディレクトリを削除する
1
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
1
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?