是否可以使用 shell 脚本递归创建文件夹?

发布于 2024-12-18 03:10:30 字数 131 浏览 0 评论 0原文

我正在尝试递归创建目录级别,例如 /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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

洒一地阳光 2024-12-25 03:10:30

您应该将 -p 参数传递给 mkdir,以便它将创建所有子文件夹。
所以按照你的例子:

mkdir -p folder1/folder2/folder3

You should pass the -p parameter to mkdir so it will create all the subfolders.
So following your example:

mkdir -p folder1/folder2/folder3
面犯桃花 2024-12-25 03:10:30

您可能还需要添加 -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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文