Send command to a background process

前端 未结 6 1838
星月不相逢
星月不相逢 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条回答
  •  Happy的楠姐
    2020-11-29 09:46

    If you don't want to be limited to signals, your program must support one of the Inter Process Communication methods. See the corresponding Wikipedia article.

    A simple method is to make it listen for commands on a Unix domain socket.

提交回复
热议问题