Coder Social home page Coder Social logo

go-hosts-edit-library's Introduction

go-hosts-edit-library

host file edit library by Golang. Golang的hosts文件编辑库。

Quick start

package main

import hostsedit "github.com/Deng-Xian-Sheng/go-hosts-edit-library"

func main() {
	// Create a file to ./hosts , as the following:
	/*
	   127.0.0.1 localhost
	   ::1 localhost
	   # Comment line
	   1.1.1.1 google.com
	   2.2.2.2 baidu.com
	*/

	// init
	// 初始化
	hostEdit,err :=  hostsedit.New("./hosts",false)
	if err != nil {
		panic(err)
	}

	// get ip by host
	// 通过主机获取ip
	v,ok := hostEdit.Get("google.com")
	if ok {
		println(v)
	}

	// edit ip by host, If the host is not in the hosts file, it will create a new one
	// 通过主机编辑ip,如果主机不在hosts文件中,它会新建一条
	err = hostEdit.Edit("google.com","3.3.3.3")
	if err != nil {
		panic(err)
	}

	ok = hostEdit.Exists("baidu.com")
	if ok {
		println("baidu.com exists hosts file")
	}else{
		println("baidu.com not exists hosts file")
	}

    // not exists no error
	err = hostEdit.Delete("baidu.com")
	if err != nil {
		panic(err)
	}
}

go-hosts-edit-library's People

Contributors

deng-xian-sheng avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.