python 子进程 popen 运行多个命令

问题描述 投票:0回答:1

我想在 Python 中调用多个命令。我在 Windows 上安装了腻子。

  1. ssh 到 Linux 机器

    ssh_command_string: plink -i yourppk.ppk ec2-user@instanceIp
    
  2. 从该机器调用一个命令,该命令将生成一个文件

    export_project_command_string: ./AppManage -export -out /opt/notme-Facebook.xml -app "Silver Fabric/notme-FacebookPostsExtraction0118" -user username-pw password -domain ion
    
  3. 下载此文件

    download_command_string: pscp -scp -i yourppk.ppk ec2-user@instanceIp:/opt/notme-Facebook.xml d:\
    

这些命令我一个一个测试的时候还可以,但是我不知道如何在Python中一次调用它们。

我尝试了以下代码,但没有成功:

LINE_BUFFERED = 1
    #NOTE: the first argument is a list
    p = Popen(['cat'], shell = True, bufsize=LINE_BUFFERED, stdin=PIPE, stdout = PIPE, stderr = PIPE)
    for cmd in [ssh_command_string, cd_command_string, export_project_command_string, download_command_string]:
        time.sleep(1) # a delay to see that the commands appear one by one
        p.stdin.write(cmd)
        p.stdin.flush()
    # even without .flush() it works as expected on my machine
    p.stdin.close()
python amazon-web-services popen
1个回答
0
投票

查看 fabric 在服务器上执行重复/自动任务。

© www.soinside.com 2019 - 2024. All rights reserved.