dig linux 脚本显示来自 txt 文件的结果

dig linux script shows results from txt file

我想要一个脚本,可以从存储在 domains.txt 文件中的多个域中挖掘 domain_name ANY,并将结果输出到 results.txt 文件...但是很简单尽可能阅读

这件事可能吗?

鉴于您在名为 domains_list.txt 的文件中有一个列表,您可以使用此命令:

for d in $(cat domains_list.txt); do echo Processing domain: $d;  dig $d | grep -v "^;" | tee ${d}_result.txt; done

要获得更好的答案,您应该提出更好的问题;)

编辑:将它放在一个文件中,使用 dig ANY :

for d in $(cat domains_list.txt); do echo Processing domain: $d;  dig $d ANY| grep -v "^;" | tee -a results.txt; done