LINUX

LINUX RMDIR指令

介紹

rmdir指令用來刪除空檔案夾。

語法

rmdir [options] directories

常用的options

-p  If you supply a directory path (not just a simple directory name), delete not only the given directory, but the specified parent directories automatically, all of which must be empty.

範例

你可以刪除空檔案夾:

⤍ rmdir mydir

使用-p可以連同上代目錄(Parent directory)一併刪除:

⤍ rmdir -p one/two/three

上述指令不僅會刪除one/two/three還會刪除one/twoone

如果要刪除非空檔案夾需要使用rm指令。

發佈留言