Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: How to use Threads

by trwww (Priest)
on Jan 09, 2011 at 04:38 UTC ( [id://881325]=note: print w/replies, xml ) Need Help??


in reply to How to use Threads

Your operating system is already multithreaded. Your task would be easier suited to using that than the in-language thread support:

opendir(DIR, $directoryLocation); my @files = grep(/\.html$/,readdir(DIR)); closedir(DIR); my @cmd = qw( start perl c:/html2wordxml.pl ); foreach my $file ( @files ) { system( @cmd => $file ); }

In other words, make a program that knows how to reformat a single file, and then call that program repeatedly without waiting for the last call to finish.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (8)
As of 2024-04-18 14:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found