add go lang, thunderbird, keepass2

This commit is contained in:
Newnius 2017-12-08 19:49:13 +08:00
parent df479aedd3
commit f83707dac8
2 changed files with 22 additions and 1 deletions

View File

@ -2,4 +2,6 @@
sudo apt update && sudo apt install -y \ sudo apt update && sudo apt install -y \
vim \ vim \
httpie httpie \
keepass2 \
thunderbird

19
langs/go.md Normal file
View File

@ -0,0 +1,19 @@
# Go lang
## Download
[download](https://golang.org/dl/)
## Extract
```bash
sudo tar -C /usr/local -xzf go$VERSION.$OS-$ARCH.tar.gz
```
## Export Path
```bash
sudo bash -c 'cat >>/etc/profile <<EOF
export PATH=\$PATH:/usr/local/go/bin
EOF'
```
## Reference
[Getting Started - The Go Programming Language](https://golang.org/doc/install)