Some matching in arrays655 (1/12/2004 12:09:38 AM) I am doing some logfile parsing (of an online chat function) and have a script in particular that sums events that are being searched for. In short: Logfile structure: JOIN 12:34 Lucille!12.34.43.21 joined ... Sandman
Delete all files older than 1 day in directory4273 (1/12/2004 5:49:49 PM) Hey folks! New to perl programming, started (checks watch) 3 hours ago. The task I am trying to achieve: Delete all folders within the 'public_compile' directory located at the root of my site. I understand ... Andrew
Starting a script461 (1/11/2004 9:12:51 PM) J've got a little problem and I don't find the solution. If I launch a script with the command-line, like perl -e 'print"toto\n";', perl execute the command and give me the result. But, if I write a script th... Olivier
Kuchen261 (1/12/2004 11:31:44 AM) Backen ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==---- http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups ---= 19 East/West-Coast Specialized Ser... office
How to avoid duplicate entrees in the bleow text file???645 (1/12/2004 6:12:00 AM) Hi all, I have the below file (C:\text1.txt) on Windows platform: --------------------------- Rob: ThirdParty 2002.05 Rob: ThirdParty 4.2 Mike: ThirdParty 2002.05 Mike: ThirdParty 4.2 Ed: ThirdParty 2002.05 D... carterave
.htaccess from perl script?528 (1/9/2004 8:00:22 PM) Hi, I am trying to send a username and password from a perl script in order to access documents in a directory secured by a .htaccess file. I am using the location command to send the access details as part o... REMOVEXtwoheadsX(1)
Word Web Page Polish Up238 (1/12/2004 8:44:45 AM) I am making quiz pages using Microsoft Word. In a Web Tool, I put Radio button, 5 choices for each problem, and when I convert the document to Web Page, I get the following: As you k... askjinu(5)
Why does this not work? (package var aliasing)369 (1/12/2004 6:50:04 PM) This works: my $a = 5; *b = \$a; $b is an alias to $a. ok. but why dont this work? my @a = (1, 2, 3); *b = \@a; I get an error when I try to use @b i nany way: Global symbol "@b" requires explic... Lucas
multiplication within RegExp.646 (1/12/2004 3:38:09 PM) Hi! I have a Perl-problem, and I'm really not a Perl-person... Can you help me? I want to translate a part of a line that looks like: "...3*DATAWIDTH*4..." to "...24...". I have the variables $define_word = ... d99alu
Syntax Problem...1164 (1/8/2004 8:24:47 PM) I'm tring to write a script that verifies if the time of the last modification is more recent than the time of the last access. Because I would like to know when any action (save, add text, delete text etc.) h... beaton