go - zollak/pentest-notes GitHub Wiki

TODO: find where I documented the installation of go

root@alive # cat ~/.profile 
export GOPATH=$HOME/work
export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin

Note: I have commented out the GOPATH and PATH variables in .profile file. I not use it currently. Moreover .bashrc is better to use to add these variables...

root@alive # ls -la /usr/local/go/bin
total 28300
drwxr-xr-x  2 root root     4096 Oct  4  2017 .
drwxr-xr-x 11 root root     4096 Oct  4  2017 ..
-rwxr-xr-x  1 root root 10377652 Oct  4  2017 go
-rwxr-xr-x  1 root root 15325248 Oct  4  2017 godoc
-rwxr-xr-x  1 root root  3257829 Oct  4  2017 gofmt

⚠️ **GitHub.com Fallback** ⚠️