grep 返回没有这样的文件或目录

发布于 2025-01-11 09:32:38 字数 155 浏览 0 评论 0原文

我尝试使用此命令来 grep IP,但收到错误没有这样的文件或目录

cat sub.txt | xargs dig {}+short | grep -Po ([0-9]){2,3}(\\.[0-9]{1,3}){3} 

I'm trying to grep the IPs by using this command but I get an error No such file or directory.

cat sub.txt | xargs dig {}+short | grep -Po ([0-9]){2,3}(\\.[0-9]{1,3}){3} 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

云仙小弟 2025-01-18 09:32:38

这应该完成完整的工作:

dig -f sub.txt +short

请参阅:man dig

This should do the complete job:

dig -f sub.txt +short

See: man dig

忆沫 2025-01-18 09:32:38

我只是在 -Po 之后添加 " 双引号,现在它可以工作了 ^^

grep -Po "([0-9]){2,3}(\.[0-9]{1,3} ){3}"

I'm just adding " double quotation after the -Po and now it works ^^

grep -Po "([0-9]){2,3}(\.[0-9]{1,3}){3}"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文