gpt4 book ai didi

Python os.system() 输入文本到脚本

转载 作者:行者123 更新时间:2023-12-04 00:08:27 26 4
gpt4 key购买 nike

我有一个需要自动化的脚本,所以它是一个 .sh我想在 python 脚本中运行的脚本:像这样:

import os
os.system('./script.sh -p 1234')

脚本 script.sh需要用户输入 3 个字段,1)sudo 密码,2)一个字符串和 3)一个字符串。
Enter password for user: xxxx  #typed by me
Enter Auth Username: xxxx #typed by me
Enter Auth Password: xxx #typed by me

如何让 python 脚本输入/插入/传递这 3 个需要的值到 script.sh .

最佳答案

您可以使用 subprocess.Popen启动脚本和 communicate方法来传递它的输入。像这样的东西:

import subprocess

p = subprocess.Popen(['./script.sh', '-p', '1234'],
stdin=subprocess.PIPE, stdout=subprocess.PIPE)
stdout, stderr = p.communicate(input='password\nauth username\nauth password\n')

关于Python os.system() 输入文本到脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23346707/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com