How to find the pages that links to a specific page?

I have the following page

I would like to find the pages on that links to this page? How can I do that?

3

1 Answer

  1. You can use wget to recursively download the entire website:

    wget --recursive --page-requisites --html-extension --no-parent --domains

  2. You can then use egrep to recursively search through all the files to find which pages link to ucm092156.pdf:

    egrep -r -o '*ucm092156.pdf'

7

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like