一、rmdir命令
用于删除空目录:
wang@wang:~/workpalce/python$ tree.├── 1.txt├── 2.txt├── 3.txt├── A│ └── B│ └── C│ └── D│ └── E└── B6 directories, 3 fileswang@wang:~/workpalce/python$ rmdir Bwang@wang:~/workpalce/python$ tree.├── 1.txt├── 2.txt├── 3.txt└── A └── B └── C └── D └── E5 directories, 3 files
二、rm命令
删除文件:
wang@wang:~/workpalce/python$ tree.├── 1.txt├── 2.txt├── 3.txt└── A └── B └── C └── D └── E5 directories, 3 fileswang@wang:~/workpalce/python$ rm 1.txt wang@wang:~/workpalce/python$ tree.├── 2.txt├── 3.txt└── A └── B └── C └── D └── E5 directories, 2 files
删除有内容的目录:
wang@wang:~/workpalce/python$ tree.├── 2.txt├── 3.txt└── A └── B └── C └── D └── E5 directories, 2 fileswang@wang:~/workpalce/python$ rm A -rwang@wang:~/workpalce/python$ tree.├── 2.txt└── 3.txt0 directories, 2 files