主页 > 知识库 > script_tool_for_linux.bash: Linux 环境下的 hosts 一键部署脚本

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

热门标签:服务外包 网站排名优化 铁路电话系统 百度竞价排名 呼叫中心市场需求 Linux服务器 AI电销 地方门户网站

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

您可能感兴趣的文章:
  • Linux 修改 etc/hosts文件详细介绍
  • linux系统下hosts文件详解及配置
  • 关于linux服务器hosts文件配置详解

标签:湖南 崇左 仙桃 黄山 衡水 兰州 湘潭 铜川

巨人网络通讯声明:本文标题《script_tool_for_linux.bash: Linux 环境下的 hosts 一键部署脚本》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266