标签:centos linux 删除目录命令 rmdir命令
在Linux中目录创建是使用mkdir,那有创建目录的命令自然有删除目录的命令,删除目录的命令是rmdir。
命令格式:
rmdir [选项] 目录
参数选项:
-p 可以递归删除,但是不能删除非空目录
-v 显示删除过程
命令实例:
1)、rmdir不能删除非空目录
Rmdir 222
[root@balich ~]# tree
.
├── 1.txt
├── 222
│ └── 123
│ ├── 123
│ │ └── 1.txt
│ ├── 1.txt
│ └── 2.txt
├── 2.txt
├──anaconda-ks.cfg
├── and printon the standard output
├──install.log
└──install.log.syslog
3 directories, 9 files
删除会报错:
[root@balich~]# rmdir 222
rmdir: 删除"222" 失败: 目录非空
[root@balich ~]#
本文出自 “八里桥” 博客,请务必保留此出处http://baliq.blog.51cto.com/5984262/1688223
标签:centos linux 删除目录命令 rmdir命令
原文地址:http://baliq.blog.51cto.com/5984262/1688223