gpt4 book ai didi

linux - 使用 zipgrep 返回文件名

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

我正在尝试在 zip 文件的文件夹中查找特定字符串。无论我尝试什么,我都无法让 zipgrep 返回实际的文件名。 (因此,“file.zip”)

它不断返回 zip 中的文件

./ -type f -name "*.zip" -exec zipgrep -l -H "string" {} \;

预期输出; “文件.zip”

最佳答案

grep 删除文件名,以防只有一个文件:

grep "something" file.txt => you'll just see "something"

grep "something" *.txt => you'll see "file.txt : something"

因此,查看文件名的最佳方法是相信 grep 正在查看多个文件,例如 /dev/null

因此,我建议您更换:

zipgrep -l -H "string" {} \;

作者:

zipgrep -l -H "string" {} /dev/null \;

/dev/null 中显然没有任何内容,但您告诉 grep 查看两个文件,因此他会添加文件名。

关于linux - 使用 zipgrep 返回文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56293063/

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