杀死孩子时循环shell脚本被杀死

时间:2019-03-07 07:00:19

标签: linux shell

#! /bin/sh -e
cd /home/pi/projects/3._Raspberry_Client/bin/ARM/Debug
while true;
do
  ./3._Raspberry_Client.out
  sleep 3s
done

我想在程序被杀死时启动程序。

因此,我制作了shell脚本;像样品一样。

如果在bash上运行它并执行kill -9 something,则完全可以正常工作。

但是我想在启动时运行此shell脚本。

我在/etc/xdg/lxsession/LXDE-pi/autostart中设置了它。

喜欢

./Client_Boot.sh (this is in /home/pi)

然后我重新启动,shell脚本正常工作。

但是如果我杀死程序,shell脚本也会被杀死。

为什么会这样?那我该怎么办?

感谢您的好意。并对英语不好说。

0 个答案:

没有答案