gpt4 book ai didi

bash - 如何在多个 ZIP 文件中搜索和替换字符串?

转载 作者:行者123 更新时间:2023-12-04 16:16:28 24 4
gpt4 key购买 nike

我在寻找正确的命令来搜索和查找包含 Unix 上的 XML 文件的多个 ZIP 文件中的字符串时遇到了问题。

我能够在多个 ZIP 文件中找到一个搜索字符串,但未能成功替换查找结果并替换该字符串。

不幸的是,这不是很有效。一旦找到解压缩文件的字符串(到临时位置),我就会尝试使用 grep 和 sed 命令。但是我假设我可以编辑到临时可能是不正确的?

oldAddress='<ns1:line1/>'
newAddress='<ns1:line1>somestring</ns1:line1>'

for file in *.zip; do
unzip -c "$file" | grep -q "<ns1:line1/>" | xargs -l {} sed -i 's/$oldAddress/$newAddress/g'
done

提前致谢。

最佳答案

关于循环结构的几点说明:

首先,虽然很想使用全局变量,但 bash 还支持以下循环样式:

 while read line ; do   echo $line; done < <(find . -iname 'file*zip')

其次,您可以使用zipgrep 搜索文件,然后只解压那些真正需要解压的文件。这将导致文件压缩两次。一次用于 greping,一次用于解压缩那些真正需要解压缩的人。但是,这将使我们无需将冗余文件压缩回来。

第三,您正在搜索 2 次,对于大文件或许多文件,这将慢两倍:

 grep -q "<ns1:line1/>" | xargs -l {} sed -i 's/$oldAddress/$newAddress/g'

相反,您可以仅解压缩那些匹配的文件,并仅使用 sed 一步完成搜索和替换。

建议的解决方案

# From within a (bash) script you need to use double quotes instead of singel qoutes to expand the variable
newAddress="<ns1:line1>somestring</ns1:line1>"
oldAddress="<ns1:line1/>"

for fname in *.zip
do
zipgrep -q $oldAddress $fname;
if [ $? -eq 0 ]; then
filename="${fname%.*}"
unzip -qp $fname | sed -e 's#'$oldAddress'#'$newAddress'#g' > $filename
zip $filename.zip $filename
fi
done

测试数据

这是一个用于创建测试数据的 for 循环:

for i in {1..4} ; do touch file$i; done
while read line ; do
echo '<ns1:line1/>' > $line;
zip $line.zip $line
rm $line
done < <(find . -iname 'file*')

关于bash - 如何在多个 ZIP 文件中搜索和替换字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21926055/

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