Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Scraping a website - Unterminated quoted string

by kennethk (Abbot)
on May 04, 2017 at 21:59 UTC ( [id://1189532]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        open PATH, "> /home/me/RT/$counter.txt" or die $!;
        print "\n\tFetching\n$_\n";
        print PATH "$article";
        close PATH;
    
  2. or download this
        open my $path, '>', "/home/me/RT/$counter.txt" or die $!;
        print "\n\tFetching\n$_\n";
        print $path $article;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1189532]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (5)
As of 2024-04-20 00:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found