gpt4 book ai didi

linux - 解压子目录到一个目录

转载 作者:太空宇宙 更新时间:2023-11-04 10:20:15 25 4
gpt4 key购买 nike

我有一个目录,其中包含许多子目录 1,2 和更多级别的 zip 文件。

你能帮我解压子目录中的所有 zip 文件到一个名为/set/的目录吗?

我在 Ubuntu 上

最佳答案

从父目录使用它来将所有 zip 文件解压到/set:

find . -name "*.zip" -print | xargs -I{} unzip -o {} -d /path/to/set

如果你不想在/set 中有子目录,你可以从/set 父目录中使用它:

find . -mindepth 1 -type f  -print0 | xargs -I{} mv {} /path/to/set

关于linux - 解压子目录到一个目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44203205/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com