如何从 shell 脚本复制整个文件树

发布于 2024-11-26 17:19:11 字数 73 浏览 0 评论 0原文

我想检查文件是否存在,如果不存在,则将整个文件树从一个位置复制到另一个位置。我想这比简单的 cp 命令稍微复杂一点,它是如何完成的?

I want to check if a file exists, and if not, copy an entire tree of files from one location to another. I imagine this is a little more complicated than a simple cp command, how is it done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

聚集的泪 2024-12-03 17:19:11

实际上,它只比简单的 cp 命令稍微复杂一点,因为它是一个近乎简单的 cp 命令。 Linux 下的 cp 具有递归选项,因此您可以执行以下操作:

cp -R dir1 dir2

请参阅此处 了解详细信息或从终端窗口执行 man cp。要检查 bash 中是否存在文件,可以使用:

if [[ -f file.txt ]] ; then
    # do something
fi

执行 man bash 了解有关 [[ 的详细信息,或参见 此处

Actually, it's only a little more complicated than a simple cp command inasmuch as it's a near-simple cp command. cp under Linux has a recursive option so you can do:

cp -R dir1 dir2

See here for details or execute man cp from a terminal window. To check if a file exists in bash, you can use:

if [[ -f file.txt ]] ; then
    # do something
fi

Execute man bash for details on [[ or see here.

旧时浪漫 2024-12-03 17:19:11

在 bash 中,您可以编写类似以下内容的内容:

   cp -a ${SOURCE_DIR} ${DEST_DIR} 

但同样,这取决于您遇到的预期问题。

In bash, you could write something like:

   cp -a ${SOURCE_DIR} ${DEST_DIR} 

but again, this depends on the expect problem you have.

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