Shell脚本自动更新hosts实现免翻墙访问google_linuxshell教程-查字典教程网
Shell脚本自动更新hosts实现免翻墙访问google
Shell脚本自动更新hosts实现免翻墙访问google
发布时间:2016-12-28 来源:查字典编辑
摘要:上次给大家发了一个python更新googlehosts的脚本,今天看到有人发出了一句用shell来获取googlehosts的脚本,我就拿...

上次给大家发了一个python更新google hosts的脚本,今天看到有人发出了一句用shell来获取google hosts的脚本,我就拿来稍微简单加工了下,下面给大家shell版的更新google hosts的脚本。

脚本内容:

复制代码 代码如下:

cat google_update.sh

#!/bin/bash

data=`date +%y%m%d%H%M`

curl http://www.360kb.com/kb/2_122.html 2>/dev/null | sed -n '/#google-hosts-2015/,/#google-hosts-2015-end/{s///g; s/<.*>//g; p}' >/tmp/hosts

cp /etc/hosts /etc/hosts_$data.bak

mv /tmp/hosts /etc/hosts

cat>>/etc/hosts<<EOF

127.0.0.1 testbak localhost.localdomain localhost

::1 localhost6.localdomain6 localhost6

EOF

也一样丢到crontab里,每隔3天更新一次

复制代码 代码如下:

0 0 */3 * * /bin/sh /root/soft_shell/google_update.sh

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新linuxshell学习
    热门linuxshell学习
    脚本专栏子分类