A lot of the instructions out there say to use
, however this has now been deprecated and we need to use go get
instead.go install
It then needs to be copied to the users bin folder. From here it will just run normally when using the standalone command
.waybackurls
go install github.com/tomnomnom/waybackurls@latest
This most likely won’t work right away, and this is because the go/bin
directory isn’t in our path.
We can either set it temporarily or put this in our ~/.profile
or ~/.bash_profile
file.
export PATH="$PATH":"$HOME/go/bin"
Leave a Reply