script_tool_for_linux.bash: Linux 环境下的 hosts 一键部署脚本

时间:2021-05-22

Linux 环境下的 hosts 一键部署脚本,由 @lstoars 贡献; @fluviusmagnus 提供增强版本。

官方网站:https://github.com/racaljk/hosts/tree/master/hosts_tools

#!/bin/sh## script_tool_for_linux## Use command: `sudo sh script_tool_for_linux.sh` or# `su -c 'sh script_tool_for_linux.sh'`# to update your hosts file.## WARNING: the script CAN NOT replace others' hosts rules.# If you have hosts rules provided by others, you may get conflict.#if [ `id -u` -eq 0 ]; then curl -fLo /tmp/fetchedhosts 'https://raw.githubusercontent.com/racaljk/hosts/master/hosts' sed -i '/# Copyright (c) 2014/,/# Modified hosts end/d' /etc/hosts sed -i "s/localhost/`hostname`/g" /tmp/fetchedhosts cat /tmp/fetchedhosts >> /etc/hosts rm -f /tmp/fetchedhosts echo 'Success.'else echo 'Permission denied, are you root?'fi

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章