在 Ubuntu 关机时运行 Shell 脚本
我试图在 Ubuntu 关闭(停止)或重新启动时执行 shell 脚本。我已经得到了一个在启动 Ubuntu 时运行的脚本 (sudo update-rc.d myScriptBoot.sh start 20 start 2 3 4 5 .),但似乎无法在关闭时执行相同的操作。我尝试过(sudo update-rc.d myScriptShutdown.sh 20 start 0 6 .)但没有运气。有人对我如何运行这个脚本有任何想法吗?
I'm trying to execute a shell script when Ubuntu shuts down (halt) or reboots. I've gotten a script to run when I boot Ubuntu (sudo update-rc.d myScriptBoot.sh start 20 start 2 3 4 5 .) but can't seem to do the same with shutdown. I've tried (sudo update-rc.d myScriptShutdown.sh 20 start 0 6 .) with no luck. Anybody have any ideas on how I could possibly get this script to run?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您从控制台关闭计算机,您可以使用 alias:
或将 shutdown 命令替换为您的命令:
If you shutdown your computer from console you can use alias:
or replace shutdown command with your command:
您可以创建一个文件
~/.bash_logout
(有关示例,请参阅/etc/skel/.bash_logout
)You can create a file
~/.bash_logout
(see/etc/skel/.bash_logout
for an example)