Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将命令的结果和此处的字符串结合起来,如下所示:
cat <(echo first) <<< second
我得到这个输出:
first
代替
first second
为什么?
从人猫:
没有 FILE,或者当 FILE 为 - 时,读取标准输入。
但是随着文件的不同-,标准输入不会被读取。
-
我想你会想要:
cat <(echo first) - <<<second