博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux命令之mkdir
阅读量:5369 次
发布时间:2019-06-15

本文共 2839 字,大约阅读时间需要 9 分钟。

mkdir [选项] 目录

若指定目录不存在则创建目录

(1).常用选项

-m,--mode=模式  设置权限模式(类似chmod),而不是rwxrwxrwx减umask-p,--parents  需要时创建目标目录的上层目录,但即使这些目录已存在也不当作错误处理-v,--verbose  每次创建新目录都显示信息-Z,--context=CTX  将每个创建的目录的SELinux安全环境设置为CTX--version  显示版本信息并退出

(2).实例

当前目录下创建一个新文件夹

[ root@CentOS6 桌面]# ll总用量  0[ root@CentOS6 桌面]# mkdir mainDir[ root@CentOS6 桌面]# ll总用量  4drwxr-xr-x.  2  root  root  4096  4月    8  09:49  mainDir

 在当前目录下创建一个新的文件夹,并输出信息

[ root@CentOS6 桌面]# mkdir –v secondDirMkdir:已创建目录“secondDir”[ root@CentOS6 桌面]# ll总用量  8drwxr-xr-x.  2  root  root  4096  4月    8  09:49  mainDirdrwxr-xr-x.  2  root  root  4096  4月    8  10:02  secondDir

在指定目录下创建文件夹,该文件夹只有创建者自己有读写执行权限

[ root@CentOS6 桌面]# mkdir –m 700 thirdDir/test7[ root@CentOS6 桌面]# cdthirdDir/[ root@CentOS6 桌面]# ll总用量  28drwxr-xr-x.  2  root  root  4096  4月    8  10:15  test1drwxr-xr-x.  2  root  root  4096  4月    8  10:15  test2drwxr-xr-x.  2  root  root  4096  4月    8  10:15  test3drwxr-xr-x.  2  root  root  4096  4月    8  10:47  test4drwxr-xr-x.  2  root  root  4096  4月    8  10:47  test5drwxr-xr-x.  2  root  root  4096  4月    8  10:47  test6drwx------.  2  root  root  4096  4月    8  12:31  test7

在当前目录下创建一个新的文件夹,且包含多个子文件夹,另外-p选项支持多层级目录

[ root@CentOS6 桌面]# mkdir –p thirdDir/{test1,test2,test3}[ root@CentOS6 桌面]# ll总用量  12drwxr-xr-x.  2  root  root  4096  4月    8  09:49  mainDirdrwxr-xr-x.  2  root  root  4096  4月    8  10:02  secondDirdrwxr-xr-x.  5  root  root  4096  4月    8  10:15  thirdDir[ root@CentOS6 桌面]# cd thirdDir[ root@CentOS6 thirdDir]# ll总用量  12drwxr-xr-x.  2  root  root  4096  4月    8  10:15  test1drwxr-xr-x.  2  root  root  4096  4月    8  10:15  test2drwxr-xr-x.  2  root  root  4096  4月    8  10:15  test3[ root@CentOS6 thirdDir]# cd ..[ root@CentOS6 桌面]# mkdir thirdDir/{test4,test5,test6}[ root@CentOS6 桌面]# ll总用量  12drwxr-xr-x.  2  root  root  4096  4月    8  09:49  mainDirdrwxr-xr-x.  2  root  root  4096  4月    8  10:02  secondDirdrwxr-xr-x.  5  root  root  4096  4月    8  10:15  thirdDir[ root@CentOS6 桌面]# cd thirdDir[ root@CentOS6 thirdDir]# ll总用量  12drwxr-xr-x.  2  root  root  4096  4月    8  10:15  test1drwxr-xr-x.  2  root  root  4096  4月    8  10:15  test2drwxr-xr-x.  2  root  root  4096  4月    8  10:15  test3drwxr-xr-x.  2  root  root  4096  4月    8  10:47  test4drwxr-xr-x.  2  root  root  4096  4月    8  10:47  test5drwxr-xr-x.  2  root  root  4096  4月    8  10:47  test6

在当前目录下创建指定文件夹,该文件夹只有创建者自己有读写执行权限,同组用户可读和执行权限

[ root@CentOS6 桌面]# mkdir -pm 750 bin/os_1[ root@CentOS6 桌面]# ll总用量  16drwxr-xr-x.  3  root  root  4096  4月  8  12:54  bindrwxr-xr-x.  2  root  root  4096  4月  8  09:49  bindrwxr-xr-x.  2  root  root  4096  4月  8  10:02  bindrwxr-xr-x.  9  root  root  4096  4月  8  12:31  bin[ root@CentOS6 桌面]# cd bin[ root@CentOS6 bin]# ll总用量  4drwxr-x---.  2  root  root  4096  4月    8  12:54  os_1

转载于:https://www.cnblogs.com/diantong/p/8742953.html

你可能感兴趣的文章
包装类的自动装箱与拆箱
查看>>
ShareSDk的使用
查看>>
android使用web加载网页的js问题
查看>>
libvirt log系统分析
查看>>
poj 1068 Parencodings
查看>>
docker 数据卷管理
查看>>
adb
查看>>
如何让一个div的大小,从某一个特定值开始,随内容的增加而自动变化?
查看>>
P1977 出租车拼车(DP)
查看>>
iOS开发--完整项目
查看>>
我的博客园皮肤模板
查看>>
正则表达式
查看>>
java基础:不同进制的表现形式
查看>>
Base64转换为blob对象
查看>>
gulp自动化压缩合并、加版本号解决方案
查看>>
windows下面安装Python和pip教程
查看>>
Java 动态向 JTable 中添加数据
查看>>
平安科技移动开发二队技术周报(第九期)
查看>>
JS window.open()属性
查看>>
Oracle【二维表管理:约束】
查看>>