我正在编写一个脚本,在命令之上添加一层功能shutdown
。它旨在安排一段时间后的关机,并发送自己的墙上消息。
如何防止shutdown
发送墙上消息?是否有内置方法或单独的命令可以执行类似的工作但不发送消息?
提前致谢。
答案1
您可以shutdown
使用--no-wall
选项进行调用。从手册页中:
--no-wall
Do not send wall message before halt, power-off, reboot.
或者,您可以使用自定义墙上消息shutdown
- 例如:
shutdown -h +5 "My custom wall message"