在xonshshell 中,如何从管道接收到 python 表达式?使用find命令作为管道提供程序的示例:
xonsh
find
find $WORKON_HOME -name pyvenv.cfg -print | for p in <stdin>: $(ls -dl @(p))
该for p in <stdin>:显然是伪代码。我必须用什么来代替它?
for p in <stdin>:
注意:在 bash 中,我会使用这样的构造:
... | while read p; do ... done
慕标5832272
相关分类