求一个定时关机脚本
各位大哥好...小弟现在在一所学校...由于每天晚上11点断电,(星期5和星期6除外)现在求一个脚本,星期1,2,3,4,7晚上22:58分自动关机,而星期5.6不关机,...
每天早上有人负责开机....
麻烦各位大大了... 这个结合那个计算星期几的脚本,然后 加上 /system shutdown 就可以了。 自动运行里设置:
start time : 22:58:00
interval : 1d 00:00:00
{
:local date
:local result ""
:local months [:toarray "jan,feb,mar,apr,may,jun,jul,aug,sep,oct,nov,dec"]
:local monthtbl [:toarray "0,3,3,6,1,4,6,2,5,0,3,5"]
:local daytbl [:toarray "sun,mon,tue,wed,thu,fri,sat"]
:local month [:pick $date 0 3]
:local day [:pick $date 4 6]
:local dayc [:pick $date 5 6]
:local century [:pick $date 7 9]
:local year [:pick $date 9 11]
:local yearc [:pick $date 10 11]
:if ([:pick $date 4 5] = 0) do={ :set day ($dayc)}
:if ([:pick $date 9 10] = 0) do={:set year ($yearc)}
:local sum 0
:set sum ($sum + (2 * (3 - ($century - (($century / 4) * 4)))))
:set sum ($sum + ($year / 4))
:set sum ($sum + $year + $day)
:for mindex from=0 to=[:len $months] do={
:if ([:pick $months $mindex] = $month) do={:set sum ($sum + [:pick $monthtbl $mindex])}}
:set sum ($sum - (($sum / 7) * 7))
:set result [:pick $daytbl $sum]
:if ($result="sun" || $result="mon" || $result="tue" || $result="wed" || $result="thu") do={/system shutdown}} 回复 zooyo 的帖子
谢谢版主大大 回复 vitasoy 的帖子
使用上了吗?有bug反馈。 目前没有,时间是准确的..谢谢咯! 回复 zooyo 的帖子
目前没有,时间是准确的..谢谢咯! 每行有注释就好了, 版主好强,好大啊!!!
页:
[1]