/dev/null)" == "" ]; then echo "not gz" else tar-6ren">
gpt4 book ai didi

linux - 如何使用 shell 脚本解压所有 .tar.gz?

转载 作者:IT王子 更新时间:2023-10-29 00:25:59 26 4
gpt4 key购买 nike

我试过这个:

DIR=/path/tar/*.gz

if [ "$(ls -A $DIR 2> /dev/null)" == "" ]; then
echo "not gz"
else
tar -zxvf /path/tar/*.gz -C /path/tar
fi

如果文件夹有一个 tar,它就可以工作。如果文件夹有很多 tar,我会收到错误消息。

我该怎么做?

我有一个想法运行一个循环来解压,但我不知道如何解决这个问题

最佳答案

for f in *.tar.gz
do
tar zxvf "$f" -C /path/tar
done

关于linux - 如何使用 shell 脚本解压所有 .tar.gz?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4263156/

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