在一行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中文網其他相關文章!