tomnomnom / waybackurls

Fetch all the URLs that the Wayback Machine knows about for a domain
3.41k stars 455 forks source link

Bash waybackurl command not found #20

Closed thevillagehacker closed 3 years ago

thevillagehacker commented 3 years ago

I tried installing tool using go get github.com/tomnomnom/waybackurls and it seems installed no errors popped and when i tried to use the tool using the command cat domains.txt | waybackurls > urls it poped like

naveenj@Saturn:|08:25 AM|~$ cat domains.txt | waybackurls > urls
-bash: waybackurls: command not found
666reda commented 3 years ago

Try to add export PATH="$PATH:$HOME/go/bin to your ~/.bashrc file

thevillagehacker commented 3 years ago

Thanks working fine now...

siriusblack01 commented 2 years ago

export PATH="$PATH:$HOME/go/bin

It didn't work for me. I use oh-my-zsh, and I added it to ~/.zshrc too, but it didn't help.

koushikfs commented 1 year ago

run export PATH="$PATH:[path to /go/bin]" on terminal, $HOME is just a path to user folder. so remove $HOME and give exact path, because your go folder might be in different location ig.