您的位置:首页 > 运维架构 > Shell

python之执行shell命令

2017-06-28 15:27 274 查看
[root@s141 ~]# python
Python 2.7.5 (default, Sep 15 2016, 22:37:39)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import os          #加载模块
>>> r=os.system
>>> r("ls /root")      #执行命令
anaconda-ks.cfg			  Music
ceph-release-1-1.el7.noarch.rpm   Pictures
Desktop				  Public
Documents			  Templates
Downloads			  Videos
epel-release-latest-7.noarch.rpm  win_2008.qcow2
initial-setup-ks.cfg		  zabbix-agent-3.0.5-1.el7.x86_64.rpm
0
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  python