1
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 1 year has passed since last update.

「rm , rmdir」Linuxでファイルやディレクトリを削除する

Posted at

用途

  • Linuxでファイルやディレクトリを削除したい時に使う

使用方法

rm

指定したファイルを削除
$ rm ファイル名
ファイルとディレクトリを削除
$ rm -r ディレクトリ名

オプションである、「-r」で再帰的に削除される。
※指定したファイルが存在しない場合やディレクトリを削除しようとした場合、確認するメッセージ・警告メッセージが表示される。

ファイルとディレクトリを削除
$ rm -rf ディレクトリ名

※オプションである、「-f」をつけているから、指定したファイルが存在しない場合やディレクトリを削除しようとした場合、確認するメッセージ・警告メッセージが表示されない。

rmdir

ディレクトリを削除
$ rmdir ディレクトリ名

※ディレクトリ内にファイルがある場合エラーになる。

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