active questions tagged perl - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T18:25:38Zhttp://stackoverflow.com/feeds/tag/perlhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1881521/using-perls-template-pm-how-can-i-select-a-random-element-from-an-array-and-out3Using Perl's Template.pm, how can I select a random element from an array and output it?Sinan Ünür2009-12-10T14:58:58Z2009-12-10T18:21:26Z
<p>Suppose I have the following in my template:</p>
<pre><code>[%- pages = [ 'one', 'two', 'three' ] -%]
<p>Go to page [%- ... -%]</p>
</code></pre>
<p>Assuming <code>EVAL_PERL</code> is <strong>not</strong> set (i.e., I cannot use a <code>[%- PERL -%]</code> block), what do I need to put inside the <code>[%- ... -%]</code> above so as to get the following output?</p>
<pre><code><p>Go to page "a randomly picked element of pages"</p>
</code></pre>
http://stackoverflow.com/questions/1876735/should-i-use-yaml-or-json-to-store-my-perl-data8Should I use YAML or JSON to store my Perl data?Paul Nathan2009-12-09T20:40:46Z2009-12-10T18:13:06Z
<p>I've been using the YAML format with reasonable success in the last 6 months or so.</p>
<p>However, the pure Perl implementation of the YAML parser is fairly
fidgety to hand-write a readable file for and has (in my opinion)
annoying quirks such as requiring a newline at end of the file. It's also
gigantically slow compared to the rest of my program.</p>
<p>I'm pondering the next evolution of my project, and I'm considering
using JSON instead (a mostly strict subset of YAML, as it turns
out). But which format has the most community traction and effort in Perl?</p>
<p>Which appears today to be the better long-term format for simple
data description in Perl, YAML or JSON, and why?</p>
http://stackoverflow.com/questions/1880995/how-do-i-install-a-module-and-its-dependencies-in-activeperl-on-windows5How do I install a module and its dependencies in ActivePerl on Windows?xsound2009-12-10T13:33:40Z2009-12-10T18:10:30Z
<p>I want to send emails using gmail's smtp servers and perl. I am trying to install <code>Email::Send::Gmail</code>, but it is not clear to me what are the steps to install it. It seems that it depends on other modules that I do not have installed.</p>
http://stackoverflow.com/questions/1877330/how-can-i-read-the-lines-of-a-file-into-an-array-in-perl-1How can I read the lines of a file into an array in Perl?Nathan Campos2009-12-09T22:18:46Z2009-12-10T18:08:03Z
<p>I have a file named <em>test.txt</em> that is like this:</p>
<blockquote>
<p>Test<br />
Foo<br />
Bar</p>
</blockquote>
<p>But I want to put each line in a array and print the lines like this:</p>
<blockquote>
<p>line1 line2 line3</p>
</blockquote>
<p>But how can I do this?</p>
http://stackoverflow.com/questions/1877607/are-listref-and-listref-equivalent-in-perl2Are @{$list_ref} and @$list_ref equivalent in Perl? Frank Krueger2009-12-09T23:13:25Z2009-12-10T18:03:08Z
<p>I am new to Perl and am curious whether <code>@{$list_ref}</code> and <code>@$list_ref</code> are perfectly equivalent.</p>
<p>They seem to be interchangeable, but I am nervous that there is something subtle going on that I may be missing.</p>
http://stackoverflow.com/questions/1877638/how-can-i-replace-all-dies-with-confess-in-a-perl-application7How can I replace all 'die's with 'confess' in a Perl application?Mike Ottum2009-12-09T23:19:05Z2009-12-10T18:02:34Z
<p>I'm working in a large Perl application and would like to get stack traces every time 'die' is called. I'm aware of the <a href="http://search.cpan.org/perldoc/Carp" rel="nofollow">Carp module</a>, but I would prefer not to search/replace every instance of 'die' with 'confess'. In addition, I would like full stack traces for errors in Perl modules or the Perl interpreter itself, and obviously I can't change those to use Carp.</p>
<p>So, is there a way for me to modify the 'die' function at runtime so that it behaves like 'confess'? Or, is there a Perl interpreter setting that will throw full stack traces from 'die'?</p>
http://stackoverflow.com/questions/1878756/how-do-i-get-httpproxy-to-log-filter-information1How do I get HTTP::Proxy to log filter information?Ambrose2009-12-10T05:13:57Z2009-12-10T17:57:49Z
<p>I'm having some trouble getting filters working with <a href="http://search.cpan.org/~book/HTTP-Proxy-0.24/lib/HTTP/Proxy.pm" rel="nofollow">HTTP::Proxy</a> and I just can't seem to figure out what I should add to the <code>logmask()</code> function to get that information.</p>
<p>I've got a log file, that part is fine, logging is happening, but no information about filters, although they're implemented and (sometimes) working.</p>
<p>I've tried </p>
<ul>
<li><code>logmask(['FILTERS'])</code></li>
<li><code>logmask('FILTERS')</code></li>
<li><code>logmask(FILTERS)</code></li>
</ul>
<p>and none of those work! What am I missing?</p>
<p>Also, what's all that about the powers of two for the mask? And the constants being exported by <code>:log</code>?</p>
<p>I'm rather confused, as you can tell.</p>
<p>EDIT:</p>
<p>going by the advice below, I have the following script: </p>
<pre><code>#!/sw/bin/perl
use strict;
use warnings;
use HTTP::Proxy qw( :log );
use HTTP::Proxy::BodyFilter::tags;
use HTTP::Proxy::BodyFilter::simple;
open( LOG, '>>', "/Users/ambrose/proxy-log.txt" ) or die "$!";
my $proxy = HTTP::Proxy->new;
$proxy->port(3128);
$proxy->logfh(*LOG);
$proxy->logmask( ALL );
$proxy->push_filter(
mime => 'text/html',
response => HTTP::Proxy::BodyFilter::tags->new(),
response => HTTP::Proxy::BodyFilter::simple->new(
sub { ${ $_[1] } =~ s!(</?)i>!$1b>!ig }
)
);
$proxy->start;
</code></pre>
<p>which doesn't log anything about filters, although the filter is in operation, I can see that italics have been changed to bold, as in the example. </p>
<p>If I change the line:</p>
<pre><code>$proxy->logmask( ALL );
</code></pre>
<p>to</p>
<pre><code>$proxy->logmask( FILTERS );
</code></pre>
<p>nothing gets added to the log file at all.</p>
http://stackoverflow.com/questions/1878108/whats-the-modern-way-of-declaring-which-version-of-perl-to-use8What's the modern way of declaring which version of Perl to use?Robert P2009-12-10T01:25:44Z2009-12-10T17:46:36Z
<p>When it come to saying what version of Perl we need for our scripts, we've got options, oh, brother, we've got options:</p>
<pre><code>use 5.010;
use 5.010_001;
use 5.10.0;
use v5.10;
use v5.10.0;
</code></pre>
<p>All seem to work. perlcritic complains about all but the first two. (It's unfortunate that the v strings seem to have such flaws, since Perl 6 expects you to do <code>use v6;</code> for your Perl 6 scripts...)</p>
<p>So, what should we be doing to indicate that we want to use a particular version of perl?</p>
http://stackoverflow.com/questions/1876497/perl-socket-programming-problems-after-continuous-write-to-socket3Perl socket programming problems after continuous write to socketunknown (google)2009-12-09T20:07:17Z2009-12-10T17:46:08Z
<p>I am using <code>IO::Socket::INET</code> to create socket like this:</p>
<pre><code>$lsn1 = IO::Socket::INET->new(
PeerAddr => '192.168.0.2',
PeerPort => 1850,
Proto => 'tcp',
Type => SOCK_STREAM
) || die "Can't connect to 192.168.0.2:1850 : $!\n";
$lsn2 = IO::Socket::INET->new(
PeerAddr => '192.168.0.2',
PeerPort = >1852,
Proto => 'tcp',
Type => SOCK_STREAM
) || die "Can't connect to 192.168.0.2:1852 : $!\n";
</code></pre>
<p>then, I want to read and write data to both sockets, so the sequence is:</p>
<pre><code>1. $lsn1->print(msg1); send message 1 to server from $lsn1.
2. $line = <$lsn2>; receive message 2 from server from $lsn2.
3. $lsn2->print(msg3); send message 3 to server from $lsn2.
4. $lsn2->print(msg4); send message 4 to server from $lsn2.
5. $line = <$lsn2>; receive message 5 from server. But it is all zeros! However I can
see the data on wireshark.
</code></pre>
<p>everything is fine until step 5. After the server side receive my message4 and send back
msg5 which is supposed to be capture by <code>$line = <$lsn2></code>, instead of capture meaningful value it capture all 0s'. I used wireshark to see what happened, a RST ACK from my side was send after the server send me msg5.</p>
<p>A function in server received msg4 and send back msg5 immediately. If I get rid of the sending of msg4 in that function, what follows the sending of msg5 is <code>FIN ACK</code>.</p>
<p>Can anyone tell me why <code>RST ACK</code> is happening? Can a perl script opens up two sockets and read and write like I did. </p>
http://stackoverflow.com/questions/1882496/complex-hash-reading-2Complex hash reading CHEE2009-12-10T17:13:02Z2009-12-10T17:35:26Z
<p>How can I read values from this kind of hash:</p>
<pre><code>my $VAR1 = {
'750208' => {
'company' => 'Kns',
'contact' => 'Los',
'email' => '',
'email2' => '.',
'id' => '2199',
'account_id' => '0012AA5',
'account_name' => 'Kk',
'contact_email' => 'ls@kk.com',
'contact_id' => '0032000000A3',
'contact_name' => 'sdasd'
},
'7503208' => {
'company' => 'Knss',
'contact' => 'Lsos',
'email' => '',
'email2' => '.',
'id' => '2199',
'account_id' => '001s2AA5',
'account_name' => 'Kks',
'contact_email' => 'ls@ksk.com',
'contact_id' => '0032000s000A3',
'contact_name' => 'ssdasd'
},
};
</code></pre>
<p>How can I print <code>750208</code>, <code>7503208</code> with their <code>id</code>s and <code>email</code>, <code>email1</code> in a loop?</p>
<p>I don't know anything about hash structure.</p>
http://stackoverflow.com/questions/1855493/what-are-some-specific-examples-of-backward-incompatibilities-in-perl-versions9What are some specific examples of backward incompatibilities in Perl versions?knorv2009-12-06T14:11:44Z2009-12-10T17:12:08Z
<p>It has been 22 years between the initial public release of Perl 1.0 (December 18, 1987) and the current stable release 5.10.1 (2009).</p>
<p>During those 22 years the following notable releases have been made:</p>
<ul>
<li>Perl 1.0 (1987 - initial release)</li>
<li>Perl 2 (1988 - better regular expressions)</li>
<li>Perl 3 (1989 - support for binary data streams)</li>
<li>Perl 4 (1991 - identifying the version of Perl described in the Camel Book)</li>
<li>Perl 5 (1994 - major changes introduced, near complete rewrite of the interpreter)</li>
<li>Perl 5.6 (2000 - 64 bit support, unicode strings, large file support)</li>
<li>Perl 5.8 (2002 - improved unicode support, new IO implementation)</li>
<li>Perl 5.10 (2007 - new switch statement, regular expression updates, smart match operator)</li>
</ul>
<p>I'm looking for specific examples of backwards incompatibilities during the history of Perl. </p>
<p>Question: </p>
<ul>
<li><b>In the 22 year history of Perl, are there any examples of Perl backwards incompatibility where Perl source code targeting Perl version X won't run under version Y (where Y > X)?</b></li>
</ul>
<p>Please include references and code examples where possible.</p>
http://stackoverflow.com/questions/1882101/how-to-determine-if-unzip-in-linux-is-installed4How to determine if 'unzip' in linux is installed?unknown (google)2009-12-10T16:13:53Z2009-12-10T16:58:43Z
<p>How can I quickly check if Linux <code>unzip</code> is installed using Perl?</p>
http://stackoverflow.com/questions/1881832/how-can-i-see-raw-bytes-stored-in-a-mysql-column3How can I see raw bytes stored in a MySQL column?Ryan O2009-12-10T15:37:10Z2009-12-10T15:47:20Z
<p>I have a MySQL table properly set to the UTF-8 character set. I suspect some data inserted into one of my columns has been double encoded. I am expecting to see a non-breaking space character (UTF-8 0xC2A0), but what I get when selecting this column out of this table is four octets (0xC3A2 0xC2A0). That's what I would expect to see if at some point somebody had treated an UTF-8 0xC2A0 as ISO-8859-1 then attempted to encode again to UTF-8 before inserting into MySQL. </p>
<p>My test above where I am seeing the four octets involves selecting this column out of MySQL with Perl's DBD::mysql. I'd like to take Perl and DBD::mysql out of the equation to verify that those four octets are actually what MySQL has stored. Is there a way to do this directly with a SQL query?</p>
http://stackoverflow.com/questions/713827/how-can-i-screen-scrape-with-perl1How can I screen scrape with Perl?Sakthivel2009-04-03T13:07:37Z2009-12-10T14:54:24Z
<p>I need to display some values that are stored in a website, for that I need to scrape the website and fetch the content from the table. Any ideas?</p>
http://stackoverflow.com/questions/1865910/how-can-i-sum-arrays-element-wise-in-perl5How can I sum arrays element-wise in Perl?melco-man2009-12-08T09:54:33Z2009-12-10T14:02:01Z
<p>Hi.
I have two arrays:</p>
<pre><code>@arr1 = ( 1, 0, 0, 0, 1 );
@arr2 = ( 1, 1, 0, 1, 1 );
</code></pre>
<p>I want to sum items of both arrays to get new one like</p>
<pre><code>( 2, 1, 0, 1, 2 );
</code></pre>
<p>Can I do it without looping through arrays?</p>
http://stackoverflow.com/questions/1873682/how-can-i-add-an-image-to-a-table-in-perl-4How can I add an image to a table in Perl?dhivi2009-12-09T12:50:03Z2009-12-10T11:31:54Z
<p>I have developed a database using Perl DBI and display using Perl CGI. Can you please suggest syntax for adding an image to the table and its background in the database.</p>
http://stackoverflow.com/questions/1877413/how-do-i-access-a-sql-server-database-from-a-perl-script-in-linux1How do I access a SQL Server database from a Perl script in Linux?ne0sonic2009-12-09T22:34:41Z2009-12-10T11:15:03Z
<p>I have a Perl script on a Linux (Ubuntu 8.10) machine and I need to write data to a SQL Server Database. I've been trying to use the DBD::ODBC module but I can't get it to connect. Where can I get a free/open source driver to use to use for the ODBC connection or is there another way to do this from Perl on Linux?</p>
http://stackoverflow.com/questions/1789555/how-do-i-call-another-perl-cgi-script-within-a-cgi-script0How do I call another Perl CGI script within a CGI script?gath2009-11-24T11:44:22Z2009-12-10T10:59:17Z
<p>I have a Perl CGI script that creates a login screen, i.e. user name and password.</p>
<p>I want, after successful login, the user to be redirected to the next action within the application (another Perl CGI script).</p>
<p>What is the command to redirect one CGI script or to an HTML page?</p>
http://stackoverflow.com/questions/824730/when-should-i-use-perl-cgi-instead-of-php-or-vice-versa2When should I use Perl CGI instead of PHP (or vice versa)?Peter2009-05-05T12:56:15Z2009-12-10T10:40:46Z
<p>For hobby purposes, I have a shared space on a hosting server that is providing, as many of them are, both PHP and Perl CGI. I have read on several places that CGI scripts are obsolete now, I think mainly for performance issues (like <a href="http://stackoverflow.com/questions/313083/is-php-or-vanilla-perl-cgi-faster">http://stackoverflow.com/questions/313083/is-php-or-vanilla-perl-cgi-faster</a>).</p>
<p>But since I just started studying Perl, I wouldn't want to waste time on implementing solutions in PHP that are way easier (or only possible) in Perl.</p>
<p>Also there are the boilerplate issues, I'm aware of CPAN (that is the existence, not yet the content), but not familiar with PHP libraries (although I have no doubt they exist). I'm not prepared to write a login-procedure or basic user administration from scratch for the 10^10th time.</p>
<p>I don't the luxury at this point to waste a lot of time in research for hobby projects either, so I thought, let's ask the experts for a headstart.</p>
http://stackoverflow.com/questions/1875276/encapsulating-content-in-a-variable0Encapsulating Content In a VariableNathan Campos2009-12-09T16:57:34Z2009-12-10T09:42:13Z
<p>Hello,<br />
I want to know how can I encapsulate the result(<code>substr($text, 12)</code>) of the variable <code>$opt</code> into itself(put the result replacing the expression <code>substr($text, 12)</code>), but how I can do this?</p>
<p>If needed. Here is my code:</p>
<pre><code>my $text;
my $opt = substr($text, 12);
if ($command =~ /^Hello World Application/i) {
print "$opt\n";
}
# More code....
print # Here I want to print the result of 'substr($text, 12)' in the if
</code></pre>
http://stackoverflow.com/questions/1873814/what-is-and-i-in-perl0What is /^ and /i in Perl?Nathan Campos2009-12-09T13:16:56Z2009-12-10T05:03:57Z
<p>Recently I downloaded a source (LevBot) and then I see this line:</p>
<pre><code>} elsif($text =~ /^slaps $levbot_nick/i) {
</code></pre>
<ul>
<li>But what <code>/^</code> and <code>/i</code> do?</li>
<li>Why to use they?</li>
</ul>
<p>I think this is regular expression, I'm right?</p>
http://stackoverflow.com/questions/1870991/how-do-i-schedule-a-task-in-perl2How do I schedule a task in Perl?alex2009-12-09T01:01:53Z2009-12-10T00:57:19Z
<p>Does anyone knows if perl supports a task scheduler?</p>
<p>I am working on a c# program that controls a bunch of perl scripts. The perl
script talked to some device over the socket interface. The device, "target"
, is a embedded system device that require real time interaction. </p>
<p>One of the requirements I need to fulfill is that when I receive message "A"
from the device, I need to schedule an event that is going to happen in 15 miliseconds
in the future. This event is going to send the message to UT. We call it "B" here.
The delay function wouldn't work here because other messages shouldn't be blocked because
of Message "B". Sometimes, I also need to send Message "B" every 15 miliseconds.</p>
<p>or Maybe Perl is not a good choice here.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1877108/select-value-with-linux-command-xpath-from-perl0Select value with Linux command xpath (from Perl)falstaff2009-12-09T21:42:00Z2009-12-09T22:58:34Z
<p>I want to get an attribute out of a XML-Tree. Therefor I use the command xpath from package libxml-xpath-perl. I figured out this command:</p>
<pre><code>virsh dumpxml save | xpath -e "/domain/devices/disk[@type='file']/source/@file[1]"
</code></pre>
<p>This gives me</p>
<pre><code> file="/var/lib/libvirt/images/save.raw"
</code></pre>
<p>How can I select the value only? (/var/lib/libvirt/images/save.raw)</p>
<p>Thanks</p>
<p>falstaff</p>
http://stackoverflow.com/questions/1876851/why-do-perl-control-statements-require-braces8Why do Perl control statements require braces?Rob Kennedy2009-12-09T21:01:41Z2009-12-09T22:33:18Z
<p>This may look like the recent question that asked <a href="http://stackoverflow.com/questions/1875888/why-doesnt-perl-allow-one-liners-to-be-unblocked">why Perl doesn't allow one-liners to be "unblocked,"</a> but I found the answers to that question unsatisfactory because they either referred to <a href="http://perldoc.perl.org/perlsyn.html#Compound-Statements" rel="nofollow">the syntax documentation that says that braces are required</a>, which I think is just begging the question, or ignored the question and simply gave braceless alternatives.</p>
<p>Why does Perl require braces for control statements like <em>if</em> and <em>for</em>? Put another way, why does Perl require blocks rather than statements, like some other popular languages allow?</p>
http://stackoverflow.com/questions/1875888/why-doesnt-perl-allow-one-liners-to-be-unblocked1Why doesn't Perl allow one liners to be 'unblocked'?unknown (google)2009-12-09T18:36:30Z2009-12-09T22:15:22Z
<p>for example:</p>
<pre><code>if (something)
function();
else
nope();
</code></pre>
http://stackoverflow.com/questions/1871092/masking-a-string-in-perl-using-a-mask-string4Masking a string in perl using a mask stringReed Debaets2009-12-09T01:33:54Z2009-12-09T16:57:03Z
<p>I have a string such as 'xxox-x' that I want to mask each line in a file against as such:</p>
<ul>
<li>x's are ignored (or just set to a known value)</li>
<li>o's remain unchanged</li>
<li>the - is a variable length field that will keep everything else unchanged</li>
</ul>
<p>therefore mask 'xxox-x' against 'deadbeef' would yield 'xxaxbeex'</p>
<p>the same mask 'xxox-x' against 'deadabbabeef' would yield 'xxaxabbabeex'</p>
<p>How can I do this succinctly preferrably using s operator?</p>
http://stackoverflow.com/questions/1873329/how-do-i-install-perl-modules-on-machines-without-an-internet-connection3How do I install Perl modules on machines without an Internet connection?Rob2009-12-09T11:36:47Z2009-12-09T16:50:55Z
<p>I need to install my Perl-based software on networked machines which aren't connected to the internet. Therefore, I would like to download specific versions and/or latest versions of the Perl modules and I would also like to know if there is an install procedure required for these modules.</p>
<p><strong>Background:</strong><br>
The machines aren't connected to the internet for security reasons and its deemed unnecessary also.</p>
<p>I would place the downloaded modules on a machine that I call the 'install server' and it contains my Perl based software and would also contain the local copies of the Perl modules.</p>
<p>I call a machine that I want to install my Perl-based software on, the 'target machine', also not connected to the internet. There can be several target machines, each can run this software that I want to install. I log onto the target machine and run an install script which would connect to the install machine via the local network to obtain the Perl-based software and dependent Perl modules and installs them.</p>
<p>So I need to know:</p>
<ol>
<li>How/Where to get specific versions of Perl modules, e.g. CGI.pm etc</li>
<li>How to install these Perl modules. Is it a case of just placing them in a directory somewhere, e.g. a library path and making sure that this directory path is in the @INC library path environmental variable, if it is not already?</li>
</ol>
<p>I would prefer not to have to do anything like make install etc. as part of installing the modules. I would like to modules to be pre-compiled or prepared as necessary so it is as simple as possible to install them. I want to avoid additional dependencies like make and its configuration, and having to parse its output to check whether it was successful.</p>
<p>Please help me by asking the above specific questions as I am not able to change the concept of 'install machine' and 'target machine' which aren't connected to the internet - I have to provide a solution that works within this arrangement.</p>
http://stackoverflow.com/questions/1863772/what-happens-when-you-put-an-array-on-the-right-side-of-a-operator1What happens when you put an array on the right side of a => operator?NXT2009-12-08T00:15:13Z2009-12-09T15:12:11Z
<p>This might seem like a stupid question but it's been a long day. I'm an adapting some Perl code for another use and I ran across this syntax:</p>
<pre><code>my @request;
#... fill the array with stuff...
my $reply = $service->call('requestMessage' => @request, $header);
</code></pre>
<p>That method call seems implausible, if <code>=></code> is just a special kind of comma and @request gets interpolated into the list.</p>
<p>Is it actually equivalent to:</p>
<pre><code>my $reply = $service->call('requestMessage' => \@request, $header);
</code></pre>
<p>What's going on here?</p>
<p><strong>EDIT:</strong> Thanks for the answers. I am well aware of the difference between pass by value and pass by reference. I was asking if an apparent pass by value was being converted into a pass by reference. Apparently not. Thank you all for answering.</p>
http://stackoverflow.com/questions/1864267/how-can-i-sort-a-perl-list-in-an-arbitrary-order2How can I sort a Perl list in an arbitrary order?NXT2009-12-08T02:46:15Z2009-12-09T15:11:35Z
<p>Hi Everyone,</p>
<p>I have a list of strings whose values come from a fixed set. I need to sort this
list in an arbitrary order.</p>
<p>The order of the set is specified by another list of all possible strings, sorted in order in an array.</p>
<p>Here is an example:</p>
<pre><code>my @all_possible_strings_in_order = ('name', 'street', 'city','state', 'postalcode');
my @list_that_needs_to_be_sorted = ('city', 'state', 'name');
</code></pre>
<p>I am working in perl. I figure my best bet is to automatically create a hash that associates strings with ordinal numbers, and then sort by reference to those ordinal numbers.</p>
<p>There are about 300 possible strings in the set. Typical lists will have 30 strings that need to be sorted. This isn't going to be called in a tight loop, but it can't be slow either. Automatically building the ordinal hash can't be done ahead of time due to the structure of the program.</p>
<p>I'm open for suggestions on better ways to do this. Thanks!</p>
<p><strong>Edit:</strong> You guys are awesome. I can't hold my head up any more tonight, but tomorrow morning I'm going to take the time to really understand your suggestions... It's about time I became proficient with map() and grep().</p>
http://stackoverflow.com/questions/1871655/how-can-i-listen-on-multiple-sockets-in-perl1How can I listen on multiple sockets in Perl?alex2009-12-09T04:54:12Z2009-12-09T15:05:48Z
<p>Hi:</p>
<p>I want to listen on different sockets on a TCP/IP client written in Perl. I know I
have to use <code>select()</code> but I don't know exactly how to implement it.</p>
<p>Can someone show me examples?</p>
<p>Thanks</p>