Shellfuncs Python API执行用Shell脚本编写的功能。 假设您有一个shell脚本counters.sh,如下所示: count_python_imports () { find -name ' *.py ' | xargs grep -e ' ^import os$ ' -e ' ^import sys$ ' -e ' ^import re$ ' | cut -d: -f2 | sort | uniq -c } 您想在Python中执行count_python_imports函数。 与其使用繁琐的子流程,不如执行以下操作: import shellfun