当前位置:  开发笔记 > 编程语言 > 正文

在Python中按顺序执行命令

如何解决《在Python中按顺序执行命令》经验,为你挑选了2个好方法。

我想连续执行多个命令:

即(只是为了说明我的需要):

cmd(外壳)

然后

cd dir

LS

并阅读ls的结果.

有什么想法与子进程模块?

更新:

cd dir和ls只是一个例子.我需要运行复杂的命令(遵循特定的顺序,没有任何流水线操作).实际上,我想要一个子进程shell并能够在其上启动许多命令.



1> tzot..:

要做到这一点,你必须:

shell=Truesubprocess.Popen通话中提供参数,并且

用以下命令分隔命令:

; 如果在*nix shell下运行(bash,ash,sh,ksh,csh,tcsh,zsh等)

&如果在cmd.exeWindows 下运行



2> S.Lott..:

有一种简单的方法来执行一系列命令.

请使用以下内容 subprocess.Popen

"command1; command2; command3"

或者,如果你遇到了Windows,你有几种选择.

创建一个临时的".BAT"文件,并将其提供给 subprocess.Popen

使用单个长字符串中的"\n"分隔符创建一系列命令.

使用"",就像这样.

"""
command1
command2
command3
"""

或者,如果你必须零碎地做事,你必须做这样的事情.

class Command( object ):
    def __init__( self, text ):
        self.text = text
    def execute( self ):
        self.proc= subprocess.Popen( ... self.text ... )
        self.proc.wait()

class CommandSequence( Command ):
    def __init__( self, *steps ):
        self.steps = steps
    def execute( self ):
        for s in self.steps:
            s.execute()

这将允许您构建一系列命令.


`subprocess.Popen("ls")`有效.但是,`subprocess.Popen("ls; ls")`对我来说失败了.错误:`Traceback(最近一次调用最后一次):文件"",第1行,在文件"/usr/lib64/python2.6/subprocess.py",第639行,在__init__ errread,errwrite)文件"/usr/lib64/python2.6/subprocess.py",第1228行,在_execute_child中引发child_exception OSError:[Errno 2]没有这样的文件或目录`
推荐阅读
罗文彬2502852027
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有