書式
rm 削除するディレクトリパス
説明
ディレクトリを削除します。ディレクトリ内にディレクトリがある場合にはrm -r ディレクトリ名と指定します。
オプション | 内容 |
-d | |
-f | |
-i | |
-P | |
-R | ディレクトリ以下も削除(再帰) |
-r | |
-v | バーボーズモードにする |
-W | |
実行結果
PowerMacG5x2:~/tests/sample openspc$ mkdir sample
PowerMacG5x2:~/tests/sample openspc$ ls -l
total 0
drwxr-xr-x 2 openspc openspc 68 Dec 25 22:31 sample
PowerMacG5x2:~/tests/sample openspc$ rm -r sample
PowerMacG5x2:~/tests/sample openspc$ ls -l
PowerMacG5x2:~/tests/sample openspc$