add readme
This commit is contained in:
parent
1af7c0b3b7
commit
8421068045
|
@ -0,0 +1,21 @@
|
|||
# complete
|
||||
|
||||
WIP
|
||||
|
||||
a tool for bash writing bash completion in go.
|
||||
|
||||
## example: `go` command bash completion
|
||||
|
||||
Install in you home directory:
|
||||
|
||||
```
|
||||
go build -o ~/.bash_completion/go ./gocomplete
|
||||
echo "complete -C ~/.bash_completion/go go" >> ~/.bashrc
|
||||
```
|
||||
|
||||
Or, install in the root directory:
|
||||
|
||||
```
|
||||
sudo go build -o /etc/bash_completion.d/go ./gocomplete
|
||||
```
|
||||
|
Loading…
Reference in New Issue