mkdir 选项 参数
下面我们在 /opt 目录下演示 mkdir 命令的使用方式,注意查看显示结果。#在/opt目录下新建空的目录test1,这里使用的是相对路径 [root@localhost opt]# mkdir test1 [root@localhost opt]# ls test1 #在/opt目录下同时新建test2和test3两个目录,这里使用的是相对路径 [root@localhost opt]# mkdir test2 test3 [root@localhost opt]# ls test1 test2 test3 #批量新建多个目录,使用{a..z}或{1..10}连续集合的方式表示,也可以使用{目录名1,目录名2,……}取值列表的方式表示 [root@localhost opt]# mkdir {a..f} [root@localhost opt]# ls a b c d e f rh [root@localhost opt]# mkdir {aa,bb,cc} [root@localhost opt]# ls a aa b bb c cc d e f rh #在/opt目录下新建二级子目录a,然后在a目录下新建三级子目录b,目录结构最终是/opt/a/b,这里使用选项-p和相对路径来实现,并使用ls –R命令进行查看 [root@localhost opt]# mkdir -p a/b [root@localhost opt]# ls -R a a: b a/b:
本文链接:http://task.lmcjl.com/news/5554.html