标签: python linux bash function shell
如果我的shell脚本中有某个函数,可以从外部python脚本调用该函数吗?
答案 0 :(得分:1)
以下是一些参考资料,因为我不确定您要做什么:
Running Shell Commands
您可以使用Python subprocess模块:
from subprocess import call call(["ls", "-l"])
或者,如果您尝试从shell脚本中运行特定函数,那么在Python中重新编写该函数会更明智。类似的SO问题可以在这里找到:
How to call a shell script function/variable from python?