python之执行shell命令

发布时间:2019-07-16 10:09:38编辑:auto阅读(1566)

    [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


关键字