#!/usr/bin/perl
#
# mm_cli_control.pl
...

Perl perl Mailman CLI front-end

by grep65535, September 06, 2011 22:22, No refactoring, tagged with perl

I've been studying Perl for...

6924996dc23ceaf8a537d653ee670332 Talk
@fields = ("name", "description", "other_name", "etc");
print "UPDATE tablename";
for (@fields) {
...

Perl Method and database insertion

by iyf.myopenid.com, September 19, 2010 21:02, 7 refactorings

Hello,
This is the first t...

55502f40dc8b7c769880b10874abc9d0 Talk
#>>if Record Type is vehicle---------------<<
if($filename =~ m/$infile3/){
	#>>process vehicle records
...

Perl Help make my code blocks be...

by dareljohnson.myopenid.com, May 13, 2010 03:19, 1 refactoring, tagged with perl, search and replace fields

There's a lot of repletion ...

Fe28635fce6db473f411c2dd15c67203 Talk
#!/usr/bin/perl
...

Perl Restructuring Perl Sitemap ...

by tiekuhn, February 27, 2010 10:24, 1 refactoring, tagged with perl sitemap structure

I recently rewrote my Ruby ...

175ab087b0647367da3d370fbf5bc024 Talk
#!/usr/bin/perl -wT

use strict;
...

Perl Handling both dots and comm...

by knorv.myopenid.com, September 28, 2009 15:26, 9 refactorings, tagged with perl, parsing

I'm trying to create a meth...

55502f40dc8b7c769880b10874abc9d0 Talk
#!/usr/bin/perl

use warnings;
...

Perl A Dvorak keyboard layout cy...

by lordzoner.myopenid.com, August 06, 2009 03:32, 5 refactorings, tagged with regex, cypher

I can't quite get the last ...

D41d8cd98f00b204e9800998ecf8427e Talk
use Time::DaysInMonth;

# Get todays date in the form of YYMMDD
...

Perl Processing files by date.

by trirnoth, February 26, 2009 16:08, 5 refactorings

The following takes a date ...

B477db7638522c078d3f0b696b85aee5 Talk
#!/usr/bin/perl
use strict;
use warnings;
...

Perl Find the file with the high...

by bonzobo.blogspot.com, January 07, 2009 07:19, 2 refactorings, tagged with sort mtime date files

Here's a small script that ...

43c4376065a1db662eea18f2437c832a Talk
#!/usr/bin/perl
      #smtp scanner by Tak
...

Perl Smtp Scanner

by tak11.myopenid.com, December 16, 2008 04:07, 8 refactorings, tagged with perl, smtp, scanner, port

I wrote this a LOONGG time ...

42306c1a1e87611519fdf1811ffe2c9c Talk
#!/usr/bin/perl -w
use strict;

...

Perl deldup

by tak11.myopenid.com, December 16, 2008 03:54, 4 refactorings, tagged with perl, file, password

ment to cycle through a pas...

42306c1a1e87611519fdf1811ffe2c9c Talk
#!/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
#!/usr/bin/perl  
# Load the Net::FTP package 
use Net::FTP;  
...

Perl Take Last modified file in ...

by iPepito, October 18, 2008 12:41, 3 refactorings, tagged with backup ftp perl tar perl

I code this script for need...

Ecb3a5f6532ed726f15f6f8fadca6134 Talk
use File::Spec;

sub purge_archive{
...

Perl Delete files from a directory

by kire, October 14, 2008 21:12, 2 refactorings, tagged with short, perl

I want to remove all files ...

37fa9baa82d848871535d6e2101221e5 Talk
#!/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
#!/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
#!/usr/bin/perl
use strict;
use warnings;
...

Perl MAC Formatting

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

Converting the return from ...

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

Perl Hello world!

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

Can you refactor this to ma...

6869f98aa6911b0f9f13468ccca24813 Talk
#!/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, 2 refactorings, tagged with perl, obfuscated

As the title implies, guess...

Efdad317c297a2aee89ef435995dbdb6 Talk
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, 4 refactorings, tagged with xml, perl, oneliner, one-liner, tags, html, xhtml

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

Aae34a7973a8d98e53764a1c89090c55 Talk
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
#!/usr/bin/perl

use LWP::Simple;
...

Perl Random sentence generator

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

Random sentence generator

D41d8cd98f00b204e9800998ecf8427e Talk