码迷,mamicode.com
首页 > 其他好文 > 详细

自定义变量使用

时间:2019-02-01 17:12:58      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:不能   div   lin   style   shel   自定义   utf8   1.0   echo   

subprocess.call 是不能作为赋值的,需要用到 subprocess.check_output 函数,而且如果要引用赋值就必须使用subprocess.call([echo,line])这种形式。

In [42]: import subprocess

In [101]: subprocess.call([kubectl,get,nodes])                                                                                 
NAME      STATUS    ROLES     AGE       VERSION
test2     Ready     node      2d        v1.11.0

In [42]: output=subprocess.check_output(["kubectl get nodes | grep test2 | awk ‘{print $1}‘"], shell=True)                              

In [43]: name=output.decode(utf8).strip()                                                                                          

In [44]: print(line)                                                                                                                 
test2

In [83]:                                                                                              
test2

In [102]: subprocess.call([kubectl,label,nodes,name,node-role.kubernetes.io/node=])

 

自定义变量使用

标签:不能   div   lin   style   shel   自定义   utf8   1.0   echo   

原文地址:https://www.cnblogs.com/effortsing/p/10346222.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!