在一行 Makefile 命令中执行多行命令
使用 -c 选项从命令行执行 Python 命令时,在多行循环之前导入模块时会发生语法错误。要解决此问题,可以考虑以下几种方法:
回显到 Python 解释器:
echo -e "import sys\nfor r in range(10): print 'rob'" | python
使用 Python 的 exec 函数:
python -c "exec(\"\"\"import sys\nfor r in range(10): print 'rob'\"\"\")"
链接 Echo 命令:
(echo "import sys" ; echo "for r in range(10): print 'rob'" ) | python
这些解决方案允许在单行中执行多行命令,从而能够将 Python 代码集成到Makefile。
以上是如何在单个 Makefile 命令中执行多行 Python 命令?的详细内容。更多信息请关注PHP中文网其他相关文章!