我有一个网关 bash 脚本。发送到 STDERR 的数据是我想要通过 bash 脚本(nodejs 脚本)启动的应用程序的标准输入的数据。
这是我正在尝试做的事情的一个想法...... bash-gateway.sh:
#since STDERR will not continuously send data, i put a neverending while loop
#to wait for data to be present.
while (true);
do
#Read the data from STDERR and send it to server.js STDIN
cat /dev/fd/2 | node server.js;
done;