中身が空ではないディレクトリを消す場合
- ファイルが存在するディレクトリを削除する場合、以下のコマンドを実行します。
$ rm -r sample
間違えて以下のようなコマンドを打つと失敗します
- 以下はディレクトリ削除コマンドではありません
$ rm sample
rm: cannot remove 'sample': Is a directory
- 以下は中身にファイルがない場合のコマンドです
$ rmdir sample
rmdir: failed to remove 'sample': Directory not empty
- ちなみに「-rf」オプションを付けると、本当に消していいのか?という警告なしで削除できます