I have the following page
I would like to find the pages on that links to this page? How can I do that?
31 Answer
You can use
wgetto recursively download the entire website:wget --recursive --page-requisites --html-extension --no-parent --domainsYou can then use
egrepto recursively search through all the files to find which pages link to ucm092156.pdf:egrep -r -o '*ucm092156.pdf'