美文网首页python自动化运维
python中执行linux命令方法4

python中执行linux命令方法4

作者: 如来自然 | 来源:发表于2016-01-14 18:28 被阅读39次

    [root@bogon IP]# vim bash4.py

    !/usr/bin/env python

    import commands

    commands = commands.getoutput("date")
    print commands

    测试:

    [root@bogon IP]# python bash4.py
    Mon Jan 11 09:24:56 PST 2016

    相关文章

      网友评论

        本文标题:python中执行linux命令方法4

        本文链接:https://www.haomeiwen.com/subject/pbchkttx.html