是否可以使用 shell 脚本递归创建文件夹?
我正在尝试递归创建目录级别,例如 /folder1/folder2/folder3
我正在尝试 mkdirfolder1/folder2/folder3
,但它不起作用。我该怎么做呢?
I'm trying to recursively create levels of directories like/folder1/folder2/folder3
I'm trying mkdir folder1/folder2/folder3
, but it doesn't work. How can I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该将
-p
参数传递给mkdir
,以便它将创建所有子文件夹。所以按照你的例子:
You should pass the
-p
parameter tomkdir
so it will create all the subfolders.So following your example:
您可能还需要添加 -Z 以确保安全上下文是当前目录的安全上下文:
mkdir -p -Z dir1/dir2/dir3/dir4
假设这就是您想要的并且您希望避免稍后进行大量的 chown'ing 和 chmod'ing 操作。
You may also want to add -Z to make sure the security context is that of the current directory while you're at it:
mkdir -p -Z dir1/dir2/dir3/dir4
assuming that's what you want and you want to avoid having to do a bunch of chown'ing and chmod'ing later.