多行上的Python字符串输出

时间:2017-03-09 21:24:53

标签: python

我正在尝试创建在远程服务器上执行的冗长的ip cmd但是python在2个不同的行中断,因此无法执行。

for line in result:
  ip_cmd="/sbin/ip -o -4 addr show %s scope global | awk '{print $4;}' | cut -d/ -f 1"%(line)
  print ip_cmd

Output
/sbin/ip -o -4 addr show eth0
 scope global | awk '{print $4;}' | cut -d/ -f 1

如何在同一行上获得输出?

由于

0 个答案:

没有答案