mkdir (创建目录)
语法:
mkdir [-mp] 目录名称
选项与参数 :
- -m : 创建文件目录时,并指定文件权限
- -p : 递归的创建当前文件目录,及其子目录
示例:
- 1.创建一个
test
文件夹,并指定权限
root@Lucifer:/home/xiaolu/myproject/blog/111# mkdir -m 777 test
root@Lucifer:/home/xiaolu/myproject/blog/111# ls
test
root@Lucifer:/home/xiaolu/myproject/blog/111# ls -l
总用量 4
drwxrwxrwx 2 root root 4096 7月 7 17:04 test
- 2 .递归创建
test1/test2/test3
文件目录
root@Lucifer:/home/xiaolu/myproject/blog/111# mkdir -p test1/test2/test3
root@Lucifer:/home/xiaolu/myproject/blog/111# ls
test test1
root@Lucifer:/home/xiaolu/myproject/blog/111# ls -R test1
test1:
test2
test1/test2:
test3
test1/test2/test3:
网友评论