1
2
3
4
#!/usr/bin/perl -w

use strict;
...

Perl Apache log file sorting

by hourback, November 18, 2008 16:22, 1 refactoring, tagged with apache, timestamp, epoch, logs

I have a huge amount of log...

066739a7a44b7fb8be64e73f9f4323cb Talk
1
2
3
4
#!/usr/bin/perl  
# Load the Net::FTP package 
use Net::FTP;  
...

Perl Take Last modified file in ...

by iPepito, October 18, 2008 12:41, 1 refactoring, tagged with backup ftp perl tar perl

I code this script for need...

Ecb3a5f6532ed726f15f6f8fadca6134 Talk
1
2
3
4
#!/usr/bin/perl  
# Load the Net::FTP package 
use Net::FTP;  
...

Perl Create Backup and send to F...

by iPepito, October 18, 2008 12:37, 1 refactoring, tagged with backup ftp data

I code this script for need...

Ecb3a5f6532ed726f15f6f8fadca6134 Talk
1
2
3
4
use File::Spec;

sub purge_archive{
...

Perl Delete files from a directory

by kire, October 14, 2008 21:12, 1 refactoring, tagged with perl, short

I want to remove all files ...

37fa9baa82d848871535d6e2101221e5 Talk
1
2
3
#!/usr/bin/perl -w
package Bdecode;
...

Perl Bencode decoder

by Chris Jester-Young, August 22, 2008 01:19, No refactoring, tagged with bencode, bdecode, torrent

The BitTorrent .torrent fil...

729442eea8d8548842a6e0947e333c7b Talk
1
2
3
4
#!/usr/bin/perl
use strict;
use warnings;
...

Perl MAC Formatting

by mrxinu, July 20, 2008 23:25, 5 refactorings, tagged with mac snmp

Converting the return from ...

B5603dc8f1e87c251bf9b1d28f31d38f Talk
1
2
3
4
#!/usr/bin/env perl
#What follows is the demented codings of someone bored.
package upsidedown;
...

Perl Guess the Code

by dbr, March 24, 2008 04:51, 1 refactoring, tagged with perl, obfuscated

As the title implies, guess...

Efdad317c297a2aee89ef435995dbdb6 Talk
1
perl -le'*{$#_}=sub{world},s;"*;$,=$";e,*{$"}=sub{Hello},print$_--->(),&$_'

Perl Hello world!

by Simon Law, March 18, 2008 13:49, 1 refactoring, tagged with perl, obfuscated, hello world, one-liner

Can you refactor this to ma...

6869f98aa6911b0f9f13468ccca24813 Talk
1
2
3
4
#!/usr/bin/perl -w

# This scrit use the Net::Ping Module to ping an 
...

Perl Example of Net::Ping

by Gnix, March 16, 2008 20:43, 2 refactorings

Simple example

077b12f1039dceb830c2b83be8dcbd1b Talk
1
curl http://www.cnn.com | perl -ne 'm/>([^<].*?[^>])<\// && print$1."\n"'

Perl Perl one-liner to extract x...

by griflet, November 13, 2007 17:19, 3 refactorings, tagged with perl, oneliner, one-liner, xml, tags, html, xhtml

Hello,
I'm a web-scrapping...

Aae34a7973a8d98e53764a1c89090c55 Talk
1
2
3
4
use Cache::FileCache;

$cache = new Cache::FileCache( );
...

Perl Cache::Cache subroutine wit...

by montoya, October 11, 2007 19:17, 2 refactorings

I'm having serious trouble ...

C05cad8e507792fd5aac221af97dfe26 Talk
1
2
3
4
#!/usr/bin/perl

use LWP::Simple;
...

Perl Random sentence generator

by EXPERTPROGRAMMER, September 27, 2007 19:31, 6 refactorings

Random sentence generator

Avatar Talk