mkdir [文件名] 建立文件目錄.net
rmdir [文件名]刪除目錄,只能刪除非空目錄。不能刪除文件get
[root@localhost ~]# mkdir /tmp/test/123class
mkdir: 沒法建立目錄 '/tmp/test/123': 沒有那個文件或目錄test
[root@localhost ~]# mkdir -p /tmp/test/123file
[root@localhost ~]# ls /tmp/testim
123touch
[root@localhost /]# cd /tmp/test/123/
[root@localhost 123]# touch 111.txt
[root@localhost 123]# ls
111.txt
[root@localhost 123]# tree /tmp/test/
/tmp/test/
└── 123
└── 111.txtimg
1 directory, 1 file
[root@localhost 123]# rm /tmp/test/123/111.txt
rm:是否刪除普通空文件 "/tmp/test/123/111.txt"?y
[root@localhost 123]# tree /tmp/test/
/tmp/test/
└── 123刪除文件
1 directory, 0 filesdi
咱們不想它出現提示的話,須要使用rm -f 來執行