介紹
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/two
及one
。
如果要刪除非空檔案夾需要使用rm
指令。
發佈留言