我需要制作一个脚本来自动化此手动输入的过程:
nslookup
> server ns1.server.com
> ls example.com
我需要将ls的所有输出保存在txt或csv中。
事实是,我找不到任何一种方法可以自动完成这三个步骤。而且我已经尝试过在Powershell,bash上进行的所有操作……什么也没有。我无法使用python或其他语言进行测试,因为服务器无法访问互联网以下载相应的库。
我想使用这种形式nslookup ls example.com ns1.server.com> example.txt
但是没有办法,请帮助我。
最好的问候
答案 0 :(得分:0)
Resolve-DnsName example.com -Server ns1.server.com -Type ALL | Out-File -FilePath example.txt