Metadata-Version: 2.1
Name: host-manager
Version: 0.1.1
Summary: Management CLI of /etc/hosts file to add and remove mappings
Home-page: https://github.com/mastrogiovanni/host-manager
Author: Michele Mastrogiovanni
Author-email: michele.mastrogiovanni@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# host-manager

Management of /etc/hosts file to add and remove mappings

Usage:
```
host-manager [add|del] hostname [ip]
```

## Examples

The following maps host kubeflow.development.com to ip 192.168.0.1:
```
> host-manager add kubeflow.development.com 192.168.0.1
```

The following removes the mapping of host kubeflow.development.com
```
> host-manager del kubeflow.development.com
```


