@@ -24,7 +24,7 @@ This is just one tool in the chain. `notes` is a command line tool, and some peo
24
24
### Automatic:
25
25
26
26
``` bash
27
- curl -L https://rawgit.com/pimterry/notes/master /install.sh | bash
27
+ curl -L https://rawgit.com/pimterry/notes/latest-release /install.sh | bash
28
28
```
29
29
This will install ` notes ` , a default configuration, a man page, and bash completion if possible.
30
30
@@ -33,7 +33,7 @@ This will install `notes`, a default configuration, a man page, and bash complet
33
33
Download ` notes ` , ` chmod +x ` , put it in your ` $path ` . This will probably do it:
34
34
35
35
``` bash
36
- curl https://cdn.rawgit.com/pimterry/notes/v0.2.0 /notes > /usr/local/bin/notes && chmod +x /usr/local/bin/notes
36
+ curl https://cdn.rawgit.com/pimterry/notes/latest-release /notes > /usr/local/bin/notes && chmod +x /usr/local/bin/notes
37
37
```
38
38
39
39
#### Installing auto completion
@@ -49,28 +49,28 @@ Installing the completions might be as follows:
49
49
** Bash**
50
50
51
51
``` bash
52
- curl https://cdn.rawgit.com/pimterry/notes/v0.2.0 /notes.bash_completion > /usr/share/bash-completion/completions/notes
52
+ curl https://cdn.rawgit.com/pimterry/notes/latest-release /notes.bash_completion > /usr/share/bash-completion/completions/notes
53
53
```
54
54
55
55
** Zsh**
56
56
57
57
On * buntu based distros and OSX:
58
58
``` bash
59
- curl -L https://rawgit.com/pimterry/notes/master /_notes > /usr/local/share/zsh/site-functions/_notes
59
+ curl -L https://rawgit.com/pimterry/notes/latest-release /_notes > /usr/local/share/zsh/site-functions/_notes
60
60
```
61
61
62
62
On other Unix distros:
63
63
64
64
``` bash
65
- curl -L https://rawgit.com/pimterry/notes/master /_notes > /usr/share/zsh/site-functions/_notes
65
+ curl -L https://rawgit.com/pimterry/notes/latest-release /_notes > /usr/share/zsh/site-functions/_notes
66
66
```
67
67
68
68
You'll need to open a new shell for this to take effect.
69
69
70
70
## What if I want to uninstall this?
71
71
If you used the automated install script to install notes, you can uninstall it the same way, by running:
72
72
``` bash
73
- curl -L https://rawgit.com/pimterry/notes/master /install.sh | bash -s -- uninstall
73
+ curl -L https://rawgit.com/pimterry/notes/latest-release /install.sh | bash -s -- uninstall
74
74
```
75
75
76
76
## How do I configure this?
0 commit comments