type
Post
status
Published
slug
2023/05/08/Batch-decompress-tar.gz-files-in-the-current-directory-and-subdirectories
summary
批量解压当前目录下以及子目录下的 tar.gz 文件
tags
开发
工具
category
碎片杂文
icon
password
new update day
Property
Oct 22, 2023 01:31 PM
created days
Last edited time
Oct 22, 2023 01:31 PM
您好,您可以使用以下命令来批量解压缩当前目录下以及子目录下的 tar.gz 文件:
find . -name "*.tar.gz" -exec tar -zxvf {} \\;
这个命令将会在当前目录下查找所有的
.tar.gz
文件,并对它们进行解压缩。如果您需要将它们放置在其他目录下,可以使用 -C
参数来指定目录。例如:find . -name "*.tar.gz" -exec tar -zxvf {} -C /home/user/ \\;
这个命令将会在当前目录下查找所有的
.tar.gz
文件,并将它们放置在 /home/user/
目录下。希望这个回答能够帮到您。
欢迎加入“喵星计算机技术研究院”,原创技术文章第一时间推送。
- 作者:tangcuyu
- 链接:https://expoli.tech/articles/2023/05/08/Batch-decompress-tar.gz-files-in-the-current-directory-and-subdirectories
- 声明:本文采用 CC BY-NC-SA 4.0 许可协议,转载请注明出处。
相关文章