Bash:在重定向之前执行命令作为标准输入

时间:2015-08-13 15:26:16

标签: bash io-redirection

我希望cat的输出打印文件poo.txt的内容,然后将其重定向为stdin到echo。内容poo.txt是数字42。即。

echo "I eat " < cat poo.txt

应该返回

I eat 42

而是shell返回

-bash: cat: No such file or directory

我该怎么做?

1 个答案:

答案 0 :(得分:2)

像这样?

malloc