卷曲到标准输出并将 zip 解压到特定目录

卷曲到标准输出并将 zip 解压到特定目录

untar卷曲到标准输出,然后(在这种情况下是 zip 文件)到特定目录的正确方法是什么?

这失败了:

curl URL | tar -x > /path

所以我想到了这个,但也失败了:

curl URL | tar -x > /path

答案1

重复的如何将 wget 的输出重定向为解压缩的输入?wget并且curl在这种情况下可以互换)。请参见回答。在这里复制它:

wget URL -O path/temp.zip; unzip -d path path/temp.zip; rm path/temp.zip

URL并相应地进行替换path

相关内容