gpt4 book ai didi

python - 在python中调用shell命令

转载 作者:太空宇宙 更新时间:2023-11-04 05:56:19 25 4
gpt4 key购买 nike

我需要在 python 中执行 shell 命令并将结果存储到变量中。我该如何执行此操作。我需要执行 openssl rsautl -encrypt -inkey key 并将结果获取到变量。

---编辑---

如何执行

perl -e 'print "hello world"' | openssl rsautl -encrypt -inkey key

在 python 中并获取输出..

最佳答案

您可以使用subprocess.check_output

from subprocess import check_output

out = check_output(["openssl", "rsautl", "-encrypt", "-inkey", "key"])

输出将存储在out中。

关于python - 在python中调用shell命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30302233/

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