标签: python pipe
将流程传递给python程序,如此
cat someFile | python -c "<Python code over here>"
如何解释缩进?
答案 0 :(得分:1)
一个简单的选择是添加缩进:
$ echo foo | python -c ' > if True: > print "yes" > '