Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 928093
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T19:57:20+00:00 2026-05-15T19:57:20+00:00

I just made a script to grab links from a website, and in turn

  • 0

I just made a script to grab links from a website, and in turn saves them into a text file.

Now I’m working on my regexes so it will grab links which contains php?dl= in the url from the text file:

E.g.: www.example.com/site/admin/a_files.php?dl=33931

Its pretty much the address you get when you hover over the dl button on the site. From which you can click to download or “right click save”.

I’m just wondering on how to achieve this, having to download the content of the given address which will download a *.txt file. All from the script of course.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T19:57:21+00:00Added an answer on May 15, 2026 at 7:57 pm

    Make WWW::Mechanize your new best friend.

    Here’s why:

    • It can identify links on a webpage that match a specific regex (/php\?dl=/ in this case)
    • It can follow those links through the follow_link method
    • It can get the targets of those links and save them to file

    All this without needing to save your wanted links in an intermediate file! Life’s sweet when you have the right tool for the job…


    Example

    use strict;
    use warnings;
    use WWW::Mechanize;
    
    my $url  = 'http://www.example.com/';
    my $mech = WWW::Mechanize->new();
    
    $mech->get ( $url );
    
    my @linksOfInterest = $mech->find_all_links ( text_regex => qr/php\?dl=/ );
    
    my $fileNumber++;
    
    foreach my $link (@linksOfInterest) {
    
        $mech->get ( $link, ':contentfile' => "file".($fileNumber++).".txt" );
        $mech->back();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just made a script to empty the previously selected tab. It is working
i've just made a sign script for my website. The form posts the data
I made a script to get JSON data from a file on our server
I just made a register script from scratch, but I'm still going to improve
I just made my first .net website. I'm trying to use the following line
I just made my first website , and I notice that the elements start
I'm using TortoiseSVN. I just made quite a few changes to my working copy
I am working on a GWT application which uses GWT-RPC. I just made a
I need help loading a custom file format into my program made in c++...
I just made 2 alert in my example.js file alert(test-javascript1); alert(test-javascript2); nothing else in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.