我有一个包含100个服务器的文本文件列表,我想登录每个服务器并需要获取服务器空间详细信息。
我有一个PowerShell命令$DiskReport = ForEach($Servernames in ($File))
,但它不支持Shell脚本/ Linux。
我知道如何从文本文件中读取服务器详细信息列表,但我需要使用提供的ssh凭据登录每个服务器。
如果有人知道shell / Linux的解决方案,请告诉我。
答案 0 :(得分:-1)
最后我的剧本正在运作.....
while read Servers
do
ssh $Servers "login"
done < Servers.txt