mkdir命令可以一次建立一个或多个目录
基本使用语法:
mkdir 目录名
[email protected]:~/eth10/eth10# mkdir test [email protected]:~/eth10/eth10# ls test [email protected]:~/eth10/eth10#
[email protected]:~/eth10/eth10# mkdir test1 test2 [email protected]:~/eth10/eth10# ls test test1 test2 [email protected]:~/eth10/eth10#
另外我们可以使用-p来递归创建目录
[email protected]:~/eth10/eth10# mkdir -p test/test1/test2 [email protected]:~/eth10/eth10# find /root/eth10/eth10/ -type d -name test2 -print /root/eth10/eth10/test/test1/test2 [email protected]:~/eth10/eth10#
其次如果我们需要创建目录的同时就设置权限,我们可以使用-m来进行创建
[email protected]:~/eth10/eth10# mkdir -m 777 test1 [email protected]:~/eth10/eth10# ls -Al 总用量 8 drwxr-xr-x 3 root root 4096 8月 17 10:33 test drwxrwxrwx 2 root root 4096 8月 17 10:39 test1
时间: 2024-12-23 19:07:54