标签: bash io-redirection
我希望cat的输出打印文件poo.txt的内容,然后将其重定向为stdin到echo。内容poo.txt是数字42。即。
cat
poo.txt
echo
42
echo "I eat " < cat poo.txt
应该返回
I eat 42
而是shell返回
-bash: cat: No such file or directory
我该怎么做?
答案 0 :(得分:2)
malloc