The shell script updates or adds the host, and adds the hostname ing to the hosts.
Source: Internet
Author: User
Shell script update or host addition, and add hostname ING to hosts some services need to map hostname and 127.0.0.1 in hosts, such as sudo, the updateHostName script can be used to change/etc/hosts or add host according to the input parameters... shell script update or host addition, and add hostname ING to hosts some services need to map hostname and 127.0.0.1 in hosts, such as sudo, the updateHostName script can be used to change/etc/hosts or add hosts based on input parameters, such as executing sudo. /changeHost. sh blog.duplicatedcode.com 192.168.1.222 domain name is fixed, and the Internet ip address is constantly changing #! /Bin/sh in_ip =$ {1} in_url =$ {2} local_ip = "127.0.0.1" # Change host updateHost () {# read inner_host = 'cat/etc/hosts | grep $ {in_url} | awk '{print $1} ''if [$ {inner_host }=$ {in_ip}]; then echo "$ {inner_host }$ {in_url} OK" else if [$ {inner_host }! = ""]; Then echo "change is OK" else inner_ip_map = "$ {in_ip }$ {in_url}" echo $ {inner_ip_map}>/etc/hosts if [$? = 0]; then echo "$ {inner_ip_map} to hosts success host is 'Cat/etc/hosts'" fi echo "shcould appand" fi} # hostName updateHostName () {inner_hostName = 'hostname' inner_local_ip =$ {local_ip} inner_host_count = 'cat/etc/hosts | grep $ {inner_hostName} | awk '{print $1}' | grep-c $ {local_ip} 'inner_host = 'cat/etc/hosts | grep $ {inner_hostName} | awk '{print $1}' if [$ {inner_host_count }! = 0]; then return fi if [$ {inner_host }=$ {inner_local_ip}]; then echo "127.0.0.1 $ {inner_hostName} already add" else if [$ {inner_host} = ""]; then inner_ip_map = "$ {inner_local_ip }$ {inner_hostName}" echo $ {inner_ip_map} >>>/etc/hosts if [$? = 0]; then echo "$ {inner_ip_map} to add hosts success 'cat/etc/hosts'" fi} main () {updateHost updateHostName} main
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.
A Free Trial That Lets You Build Big!
Start building with 50+ products and up to 12 months usage for Elastic Compute Service