我如何以编程方式获取我的机器正在使用的 DNS 服务器?
答案1
您可以使用what-is-my-dns
命令来自Dorothy dotfile ecosystem
。
您可以通过执行以下操作独立运行它:
sh -ic "$(curl -fsSL https://dorothy.bevry.workers.dev/commands/what-is-my-dns)"
或者手动安装ripgrep首先然后运行:
dig cloudflare.com | rg -o 'SERVER: .+?[(]([^)]+)' --replace '$1'