创建目录:
[root@server55 ~]#mkdir + 选项 +创建文档的路径
-p同时生成目的目录及其父目录
-v创建时显示过程
eg:
[root@server55 ~]# mkdir -pv a/b/c
mkdir: created directory `a'
mkdir: created directory `a/b'
mkdir: created directory `a/b/c'
[root@server55 ~]# tree a
a
`-- b
`-- c
2 directories, 0 files
删除目录:
[root@server55 ~]#rmdir
只能删除空目录。
移动文件:
[root@server55 ~]#mv 源文件 目的路径
eg:
x向相对路径下的./a/y移动 x为目录 y为非目录文件 提示不能覆盖
[root@server55 a]# touch y
[root@server55 ~]# mkdir x
[root@server55 ~]# mv x ./a/y
mv: cannot overwrite non-directory `./a/y' with directory `x'