我有一个从两个输入文件同时读取的程序.我想让这个程序从标准输入读取.我以为我会使用这样的东西:
$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连接到subshell?