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.
我只是在学习在 bash 中使用进程替换。这是命令:
echo TEXT > >(tee log)
这是一个毫无意义的命令,但问题是我必须Enter在运行后按下。这是为什么?
有时这会发生在更有用的命令中,例如:
ls SOME_NON_EXISTING_FILE 2> >(tee log)
实际上Enter并不需要,您可以输入下一个命令,例如date并检查。由于进程替换,您的命令首先退出,然后输出被写入您的终端,这就是您对需要按Enter.
date