bash – 为什么“猫(猫)”产生EIO?

前端之家收集整理的这篇文章主要介绍了bash – 为什么“猫(猫)”产生EIO?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个从两个输入文件同时读取的程序.我想让这个程序从标准输入读取.我以为我会使用这样的东西:
$program1 <(cat) <($program2)

但我刚才发现了

cat <(cat)

产生

....
mmap2(NULL,139264,PROT_READ|PROT_WRITE,MAP_PRIVATE|MAP_ANONYMOUS,-1,0) = 0xb758e000
read(0,0xb758f000,131072)             = -1 EIO (Input/output error)
....
cat: -: Input/output error

同样地,

$cat <(read -n 1)
bash: read: read error: 0: Input/output error

所以… Linux在系统调用级别无法读取.那很有意思. bash没有将stdin连接到subshel​​l? 原文链接:https://www.f2er.com/bash/384019.html

猜你在找的Bash相关文章