waybackurls icon indicating copy to clipboard operation
waybackurls copied to clipboard

command not found

Open Done461 opened this issue 2 years ago • 3 comments

image not working although followed method git clone

Done461 avatar Apr 03 '23 20:04 Done461

This is old af but you have to make sure that a program, executable, script etc.. is in your Path. Check your $path variable and ensure that the executable binary is in one of those locations, or add it to your path manually in you zshrc. You can also cd into the directory that exe is in and use a dot slash (./waybackurls), or specify the path to the exe manually like /home/user/path/to/waybackurls --help

sweetbbak avatar May 07 '23 01:05 sweetbbak

This is old af but you have to make sure that a program, executable, script etc.. is in your Path. Check your $path variable and ensure that the executable binary is in one of those locations, or add it to your path manually in you zshrc. You can also cd into the directory that exe is in and use a dot slash (./waybackurls), or specify the path to the exe manually like /home/user/path/to/waybackurls --help

Hi sweetbbak

can you guide me more this

somehow it can recognized but still loading not working

Screenshot_2023-06-03_06_42_49

Done461 avatar Jun 03 '23 10:06 Done461

brother please read the github page for this tool, its reading from standard in (stdin) via a pipe. The example in the repo is:

cat url-list.txt | waybackurls

you could also use echo https://blah.com | waybackurls but it will just hang waiting for input otherwise. Try using waybackurls --help to see what it says. You can do this for almost every tool on the command line.

sweetbbak avatar Jun 03 '23 20:06 sweetbbak