【发布时间】:2015-10-03 17:15:56
【问题描述】:
我想将一个进程置于后台,然后多次将数据传送给它。例如:
cat & # The command I want to write into
cat_pid=$! # Getting the process id of the cat process
echo hello | $cat_pid # This line won't work, but shows what I want to
# do: write into the stdin of the cat process
所以我有 PID,如何写入该进程?我愿意以不同的方式启动 cat 进程。
另外,我在 Mac 上,所以我不能使用 /proc :(
【问题讨论】: