Shell 脚本 (BASH):切换脚本“开/关”的最佳方法是什么?这无法自行结束吗?
我想要一个带有无限循环的脚本,当再次执行该脚本时,它会杀死该脚本创建的所有进程。
所以基本上你通过终端启动脚本:
bash poll.sh
并且它无限运行,你打开另一个终端并再次
bash poll.sh
并且所有poll.sh进程都会得到被杀了。
最好的方法是什么?我的第一个想法是设置环境变量,例如 export POLLRUNNING=true 和 poll.sh 会实现类似 if [ $POLLRUNNING = true ]; 的东西exit 1
我的第二个想法是使用 touch .isrunning 和语句来请求该文件。
你会怎么做?
I would like to have a script with an infinite loop, that kills all processes created by this script when it gets executed again.
So basically you start the script via terminal:
bash poll.sh
and it's running infinitely, you open another terminal and again
bash poll.sh
and all poll.sh processes will get killed.
What would be the best way to do that? My first thought was to set environment variables, something like export POLLRUNNING=true and poll.sh would implement something like if [ $POLLRUNNING = true ]; exit 1
My second idea was to work with touch .isrunning and statement to ask for that file.
How would you do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
pidof(8)
支持-x
标志来指定脚本;它还支持-o omitpid
标志来忽略特定的 pid。所以:pidof(8)
supports an-x
flag to specify scripts; it also supports an-o omitpid
flag to leave out specific pids. So: