Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/umayr/dname
generate names like docker does when it creates a new container
https://github.com/umayr/dname
Last synced: 9 days ago
JSON representation
generate names like docker does when it creates a new container
- Host: GitHub
- URL: https://github.com/umayr/dname
- Owner: umayr
- License: mit
- Created: 2016-11-04T11:50:45.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-07T12:09:05.000Z (about 8 years ago)
- Last Synced: 2024-11-07T03:48:25.485Z (about 2 months ago)
- Language: Go
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `dname`
>generate names like docker does when it creates a new container## Install
```
λ go get -u github.com/umayr/dname/...
```Or, you can download pre-built binaries from [here](https://github.com/umayr/dname/releases).
## Usage
#### CLI:
```
λ dname -h
NAME:
dname - generate names like docker does when it creates a new containerUSAGE:
dname [command] [arguments...]VERSION:
0.0.1COMMANDS:
help, h Shows a list of commands or help for one commandGLOBAL OPTIONS:
--number value, -n value total number of generated names (default: 1)
--help, -h show help
--version, -v print the versionλ dname
elated_jenningsλ dname -n 10
sleepy_morse
thirsty_shaw
jovial_dubinsky
hungry_joliot
big_ardinghelli
nostalgic_borg
drunk_carson
serene_franklin
evil_noether
evil_goodall
```#### API:
```go
import "github.com/umayr/dname"func main() {
fmt.Println(dname.Generate())
}
```