home
to by kaoru
#!/usr/bin/perl -w
#
# pipe text to highlight.pl to highlight certain words
#
# eg. cat nastyfile.pl | highlight words you wantto by kaoru
#!/usr/bin/perl -w
#
# Checks the syntax of .pl and .pm scripts using perl -cw
# Will check all .pl and .pm files in $PWD with no arguments
#to by spiros
#!/usr/bin/perl
use warnings;
use strict;
use Data::Dumper;
use HTTP::Request::Common;to by spiros
#!/usr/bin/perl
use warnings ;
use strict ;
print 'Hello, World!' . "\n" ;
to by nando.quintana
#define NAME hello.c
#define DESCRIP many languages at once (tcl, perl 4 & 5, sh, C) http://www.ee.ryerson.ca/~elf/hack/multilang.html
#define AUTHOR Jeremy Dilatush
#define DATE 7/31/96
#define dummy \to by nando.quintana
# http://www.e-ghost.deusto.es/docs/2005/cursillos/Perl/perl.pdf
#
# $`, $& y $': toman valor del resultado de un patrĂ³n de busqueda.
$_ = 'prueba de concepto';
/de/;to by nando.quintana
$numero_proceso = $$;
$string = 'Jul 18 11:47:03 cursillos';
if ($string =~ /(..):(..):(..)/){
print "Hora: $1\n";
print "Minuto: $2\n";to by nando.quintana
#!/usr/bin/perl -w
use strict; # Don't allow sloppy syntax
use JSON; # JSON encoding and decoding
use URI::Escape; # URI encoding
use LWP::UserAgent; # High-level HTTP API