Added some commands in the readme

This commit is contained in:
Chris Bednarski 2015-02-04 10:10:05 -08:00
parent b52b8571fd
commit 15fe9d2f9b
2 changed files with 5 additions and 1 deletions

View File

@ -11,6 +11,10 @@ An idempotent command-line utility for managing your `/etc/hosts` file.
hostess off domain # Disable a domain (but don't remove it completely)
hostess on domain # Re-enable a domain that was disabled
hostess ls # List domains, target ips, and on/off status
hostess fix # Read your hosts file and spew warnings if needed
hostess fix -f # Rewrite your hosts file (things may get deleted)
hostess dump # Dump your hosts file as json
hostess apply # Add entries from a json file
hostess may mangle your hosts file. In general it will probably look like this, with domains pointing at the same IP grouped together and disabled domains commented out.

View File

@ -18,5 +18,5 @@ func main() {
hostfile := hostess.NewHostfile(hostess.GetHostsPath())
hostfile.Load()
hostfile.Parse()
fmt.Println(hostfile)
fmt.Println(hostfile.Format())
}