Skip to content

Yet another hosts file manager. This one written in rust.

Notifications You must be signed in to change notification settings

lucascaro/hostman

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hostman

Build Status Crates.io

Hostman is a command line manager for /etc/hosts.

Installation

using cargo

cargo install hostman

Manual install

Download the latest release for your architecture from github and put it in a directory in your path.

Install script

You can use the trust install script to install this tool:

curl -LSfs https://japaric.github.io/trust/install.sh | \
    sh -s -- --git lucascaro/hostman

Usage

Run the tool to get a usage summary:

hostman

hostman show

Use this command to show your current hosts file.

hostman check

Use this command to check if a host is in your hosts file:

$ hostman check localhost
# localhost is used to configure the loopback interface
127.0.0.1  localhost
::1  localhost

hostman add

Add a new host to your hosts file.

hostman add <ip> <names> [comment]...

hostman local

Add a new host to your hosts file, using 127.0.0.1 as the ip.

hostman local <names> [comment]...

hostman remove

Remove a host from your hosts file.

hostman remove <host>

hostman disable

Disable (comment out) a host from your hosts file.

hostman disable <host>

hostman enable

Enable a commented out host from your hosts file.

hostman enable <host>

hostman update

Update the cli to the latest version.

hostman update

About

Yet another hosts file manager. This one written in rust.

Resources

Stars