如何使用服务器IP作为变量在python中包括wget命令?

时间:2019-07-17 12:57:05

标签: python shell network-programming wget

我尝试了以下代码从具有不同IP地址的服务器下载文件,但是它不起作用。如何将服务器IP地址包含在URL中作为变量? 注意:我在文章中包含iperf命令作为示例,因为它可以正常工作。

我包括了用于服务器和客户端python文件的wget命令。

server.cmd("iperf -s > /dev/null &" )
server.cmd("python -m SimpleHTTPServer 8000  &")
client.cmd("iperf -c %s -t %d > /dev/null &" % (server.IP(), 1990))
client.cmd("wget  http://&server.IP()&:8000/DCN.py &")

我希望客户端可以从指定的IP服务器下载DCN.py。

1 个答案:

答案 0 :(得分:1)

为什么不只使用iperf命令中的格式字符串?

<li>