在路由器挂载计划任务,自动更新hosts
首先在路由器上新建一个shell脚本
vi gethosts.sh
复制下面的代码
#!/bin/sh rm /etc/hosts wget --no-check-certificate -P /etc/ -c https://raw.githubusercontent.com/googlehosts/hosts/master/hosts-files/hosts
然后用crontab挂载
* 22 * * * /bin/sh /root/gethosts.sh
计划每天22点更新
此处评论已关闭