type
status
date
slug
summary
tags
category
icon
password
URL
user script添加如下脚本:
#!/bin/bash# 定义每周六的关机时间shutdown_time="23:00"# 检查当前星期几day_of_week=$(date +%u)# 如果是星期六(值为6),则执行关机命令if [ $day_of_week -eq 6 ]; thenshutdown -h $shutdown_timefi
- 作者:Wilson Zeng
- 链接:https://wilsonzeng.com/article/fcd78b76-6722-4418-a785-c11b4bf53772
- 声明:本文采用 CC BY-NC-SA 4.0 许可协议,转载请注明出处。