snip 0.1.0

Text snippets on the command line. Inspired by https://zachholman.com/boom/
### Create
Create a list
```
> snip put <list_name>
```

Create a list entry
```
> snip put <list_name> <entry_key> <entry_value>
```

### Get
Get a specific entry from a list (copied in to your clipboard)
```
> snip get <list_name> <entry_key>
```

### Print
Print all entries for all lists
```
> snip show all
```

Print all entries for a list
```
> snip show <list_name>
```

Print a specific entry from a list
```
> snip show <list_name> <entry_key>
```

### Delete
Delete a list
```
> snip del <list_name>
```

Delete an entry from a list
```
> snip del <list_name> <entry_key>
```

Nuke all the lists (delete everything)
```
> snip nuke
```