Send command to a background process

前端 未结 6 1834
星月不相逢
星月不相逢 2020-11-29 09:11

I have a previously running process (process1.sh) that is running in the background with a PID of 1111 (or some other arbitrary number). How could I send something like

6条回答
  •  醉梦人生
    2020-11-29 09:53

    For how to send commands to a server via a named pipe (fifo) from the shell see here:

    Redirecting input of application (java) but still allowing stdin in BASH

    How do I use exec 3>myfifo in a script, and not have echo foo>&3 close the pipe?

提交回复
热议问题